-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.21 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.21 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
{
"name": "@timoaus/define-claude-code-hooks",
"version": "1.4.6",
"description": "Type-safe hook definitions for Claude Code",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"define-claude-code-hooks": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags",
"release:alpha": "npm version prerelease --preid=alpha && git push && git push --tags",
"release:alpha:patch": "npm version prepatch --preid=alpha && git push && git push --tags",
"release:alpha:minor": "npm version preminor --preid=alpha && git push && git push --tags",
"release:alpha:major": "npm version premajor --preid=alpha && git push && git push --tags",
"release:from-alpha": "npm version $(node -e \"console.log(require('./package.json').version.replace(/-alpha\\.\\d+$/, ''))\") && git push && git push --tags"
},
"keywords": [
"claude",
"claude-code",
"hooks",
"typescript",
"cli"
],
"author": "",
"license": "MIT",
"dependencies": {
"@types/inquirer": "^9.0.8",
"inquirer": "^12.7.0",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"devDependencies": {
"@timoaus/define-claude-code-hooks": "^1.3.0",
"@types/bun": "^1.2.18",
"@types/node": "^24.0.10",
"@vitest/coverage-v8": "^3.2.4",
"happy-dom": "^18.0.1",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timoconnellaus/define-claude-code-hooks.git"
},
"directories": {
"example": "examples"
},
"bugs": {
"url": "https://github.com/timoconnellaus/define-claude-code-hooks/issues"
},
"homepage": "https://github.com/timoconnellaus/define-claude-code-hooks#readme",
"private": false,
"peerDependencies": {
"typescript": "^5"
}
}