-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.32 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.32 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@eternalheart/x-cli",
"version": "1.1.13",
"type": "module",
"description": "A cli for project to create all you need.",
"bin": {
"x": "bin/x.js",
"xa": "bin/xa.js",
"xi": "bin/xi.js",
"xu": "bin/xu.js",
"xr": "bin/xr.js"
},
"imports": {
"#common/*": "./common/*"
},
"scripts": {
"dev": "npm run build && cd ./dist && npm link",
"dev:quit": "cd ./dist && npm unlink @eternalheart/x-cli && npm uninstall -g @eternalheart/x-cli",
"build": "node esbuild.config.js",
"cli:publish": "npm run build && cd ./dist && npm publish --registry https://registry.npmjs.com",
"cli:publish:update": "npm version patch --no-git-tag-version && npm run cli:publish",
"cli:unpublish": "npm unpublish --force @eternalheart/x-cli",
"docs:dev": "npm -C docs run dev",
"docs:build": "npm -C docs run build",
"docs:preview": "npm -C docs run preview",
"prepare": "husky",
"commit": "cz"
},
"publishConfig": {
"access": "public"
},
"author": "EternalHeart <hao131462@qq.com>",
"repository": {
"type": "git",
"url": "https://github.com/wh131462/x-cli"
},
"bugs": "https://github.com/wh131462/x-cli/issues",
"homepage": "https://wh131462.github.io/x-cli/",
"license": "ISC",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"inquirer": "^9.2.17",
"opencode-ai": "^1.1.28",
"ora": "^8.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"commitizen": "^4.3.1",
"commitlint": "^19.2.2",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.20.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.8.0",
"typescript-eslint": "^8.53.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}