-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 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
{
"name": "cc-wrapper",
"version": "0.3.2",
"description": "Cross-platform CLI wrapper for claude with reusable environment profiles",
"type": "module",
"bin": {
"cc-wrapper": "./dist/cli.js"
},
"main": "./dist/cli.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"sync-envs": "npx tsx scripts/sync-envs.ts && npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude",
"anthropic",
"cli",
"wrapper",
"profiles"
],
"author": "Amine Chraibi <aminechraibi2020@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aminechraibi/cc-wrapper"
},
"homepage": "https://github.com/aminechraibi/cc-wrapper#readme",
"bugs": {
"url": "https://github.com/aminechraibi/cc-wrapper/issues"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@inquirer/core": "^11.1.10",
"@inquirer/prompts": "^7.5.0",
"cac": "^6.7.14",
"chalk": "^5.4.1",
"cross-spawn": "^7.0.6",
"env-paths": "^3.0.0",
"ora": "^8.2.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/node": "^20.0.0",
"tsup": "^8.5.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
}
}