-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.23 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
{
"name": "claude-code-launcher",
"version": "0.9.7",
"description": "Claude Code launcher with multiple model provider support",
"main": "src/index.ts",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch run src/index.ts",
"test": "bun test",
"build:linux:x64": "bun run scripts/build.ts build:linux:x64",
"build:darwin:arm64": "bun run scripts/build.ts build:darwin:arm64",
"build:darwin:x64": "bun run scripts/build.ts build:darwin:x64",
"build:win32:x64": "bun run scripts/build.ts build:win32:x64",
"build:all": "bun run scripts/build.ts build:all",
"build:release": "bun run scripts/build.ts build:release",
"postbuild:linux:x64": "chmod +x dist/linux/x64/ccl",
"postbuild:darwin:arm64": "chmod +x dist/darwin/arm64/ccl",
"postbuild:darwin:x64": "chmod +x dist/darwin/x64/ccl"
},
"keywords": [
"claude-code",
"anthropic",
"ai",
"coding-assistant",
"launcher"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"chalk": "^5.6.0",
"prompts": "^2.4.2"
}
}