-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.09 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.09 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "start-claude",
"type": "module",
"version": "0.7.2",
"packageManager": "pnpm@10.25.0",
"description": "Start your claude code with specified config friendly :D",
"author": "BackRunner",
"license": "MIT",
"homepage": "https://github.com/backrunner/start-claude",
"repository": {
"type": "git",
"url": "https://github.com/backrunner/start-claude.git"
},
"keywords": [
"claude",
"cli tool"
],
"main": "./bin/cli.cjs",
"module": "./bin/cli.mjs",
"bin": {
"start-claude": "./bin/cli.mjs",
"scc": "./bin/cli.mjs"
},
"files": [
"bin"
],
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "node --experimental-strip-types scripts/clean.ts",
"build": "pnpm run clean && turbo build && pnpm run postbuild",
"build:manager": "turbo build --filter=@start-claude/manager",
"build:plugin": "turbo build --filter=@start-claude/plugin",
"postbuild": "node --experimental-strip-types scripts/postbuild.ts",
"dev": "turbo dev --filter=@start-claude/manager",
"dev:manager": "turbo dev --filter=@start-claude/manager",
"dev:plugin": "turbo dev --filter=@start-claude/plugin",
"watch:plugin": "turbo dev --filter=@start-claude/plugin",
"lint": "turbo lint",
"lint:fix": "turbo lint --",
"lint:inspect": "pnpm dlx @eslint/config-inspector",
"test": "turbo test",
"test:run": "turbo test",
"test:coverage": "turbo test:coverage",
"typecheck": "turbo typecheck",
"version": "node --experimental-strip-types scripts/version.ts patch",
"version:patch": "node --experimental-strip-types scripts/version.ts patch",
"version:minor": "node --experimental-strip-types scripts/version.ts minor",
"version:major": "node --experimental-strip-types scripts/version.ts major",
"release": "pnpm run clean && turbo build && pnpm run postbuild",
"release:dry-run": "turbo build --dry-run"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.946.0",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"dayjs": "^1.11.19",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"inquirer": "^12.11.1",
"next": "^15.5.7",
"open": "^10.2.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@changesets/cli": "^2.29.8",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^28.0.9",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/inquirer": "^8.2.12",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^9.2.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.39.1",
"eslint-plugin-format": "^1.1.0",
"prettier": "^3.7.4",
"rollup": "^4.53.3",
"tslib": "^2.8.1",
"turbo": "^2.6.3",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}