-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.32 KB
/
package.json
File metadata and controls
90 lines (90 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "claude-code-boost",
"version": "0.7.0",
"description": "Claude Code Boost - Hook utilities for Claude Code with intelligent auto-approval",
"main": "dist/index.js",
"type": "module",
"bin": {
"ccb": "dist/index.js"
},
"files": [
"dist/**/*",
"prompts/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "tsx --env-file=.env.local src/index.ts",
"build": "tsc --noEmit false --outDir dist",
"build:local": "tsc --noEmit false --outDir dist-local",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"type-check": "tsc --noEmit",
"test": "dotenv -e .env.local -- vitest run",
"test:watch": "dotenv -e .env.local -- vitest",
"test:env": "dotenv -e .env.local -- vitest run",
"changelog": "tsx scripts/generate-changelog-entry.ts",
"release": "tsx scripts/release.ts",
"prepublishOnly": "npm run build && npm run lint",
"prepare": "husky"
},
"keywords": [
"claude-code",
"hooks",
"automation",
"claude",
"anthropic",
"ai",
"productivity",
"development-tools"
],
"author": "yifan",
"license": "MIT",
"homepage": "https://github.com/yifanzz/claude-code-boost#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yifanzz/claude-code-boost.git"
},
"bugs": {
"url": "https://github.com/yifanzz/claude-code-boost/issues"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/node": "^24.0.14",
"@types/node-notifier": "^8.0.5",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"dotenv-cli": "^8.0.0",
"eslint": "^9.31.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@types/inquirer": "^9.0.8",
"@types/xml2js": "^0.4.14",
"commander": "^14.0.0",
"inquirer": "^12.8.0",
"node-notifier": "^10.0.1",
"openai": "^5.12.2",
"pino": "^9.9.0",
"xml2js": "^0.6.2",
"zod": "^3.23.8"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix",
"eslint"
]
}
}