-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "jaculus-registry",
"version": "1.0.0",
"description": "Jaculus registry management tool",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build:watch": "tsc --watch",
"start": "node dist/main.js",
"cli:dev": "ts-node src/cli.ts",
"cli": "node bin/jaculus-registry.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"bin": {
"jaculus-registry": "bin/jaculus-registry.js"
},
"keywords": [],
"author": "Jakub Andrysek",
"github": "https://github.com/JakubAndrysek/",
"license": "MIT",
"files": [
"dist",
"bin"
],
"packageManager": "pnpm@10.17.1",
"dependencies": {
"@jaculus/project": "^0.1.2",
"ansis": "^4.2.0",
"commander": "^14.0.3",
"glob": "^13.0.6",
"http-server": "^14.1.1",
"minimatch": "^9.0.9",
"semver": "^7.7.4",
"simple-git": "^3.30.0",
"tar": "^7.5.15"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^24.10.15",
"@types/semver": "^7.7.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jiti": "^2.6.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.47.0"
}
}