-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.06 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.06 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
{
"name": "claude-code-hooks",
"private": true,
"version": "0.0.0",
"description": "Monorepo of scoped hook packages for Claude Code (safety, comfort, UX).",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/beefiker/claude-code-hooks.git"
},
"homepage": "https://github.com/beefiker/claude-code-hooks",
"bugs": {
"url": "https://github.com/beefiker/claude-code-hooks/issues"
},
"workspaces": [
"packages/*"
],
"scripts": {
"-": "echo 'Root workspace. Run npm -w <workspace> <script>.'",
"sound": "npm -w @claude-code-hooks/sound --",
"sound:setup": "node packages/sound/src/cli.js",
"sound:play": "node packages/sound/src/cli.js play",
"notification": "npm -w @claude-code-hooks/notification --",
"generate:sounds": "npm -w @claude-code-hooks/sound run generate:sounds",
"test": "npm -ws test --if-present",
"smoke": "node scripts/smoke-cli.mjs",
"lint": "npm -ws lint --if-present",
"prepack": "npm -ws prepack --if-present"
},
"engines": {
"node": ">=18"
}
}