-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.49 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.49 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
{
"name": "@vainjs/claude-code-env",
"version": "0.4.0",
"description": "Easily manage multiple anthropic specification model apis and switch between models with one command",
"keywords": [
"claude-code-env",
"claude code",
"anthropic",
"claude"
],
"license": "Apache-2.0",
"author": "young",
"sideEffects": false,
"type": "module",
"bin": {
"cce": "dist/bundle.js"
},
"files": [
"README-zh_CN.md",
"package.json",
"README.md",
"dist"
],
"scripts": {
"build": "rolldown -c",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"inquirer": "^9.0.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/inquirer": "^9.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.0.0",
"@vainjs/eslint-config": "latest",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.4",
"prettier": "^3.6.2",
"rolldown": "1.0.0-beta.42",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@10.0.0",
"engines": {
"node": ">=20"
}
}