-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.5 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
{
"name": "claude-code-ts-quality-hook",
"version": "1.0.0",
"description": "TypeScript and ESLint quality check hook for Claude Code",
"main": ".claude/hooks/quality-check.js",
"scripts": {
"test": "node .claude/hooks/quality-check.js test/sample.ts",
"install-hook": "cp -r .claude /path/to/your/project/",
"validate": "node .claude/hooks/quality-check.js"
},
"keywords": [
"claude-code",
"typescript",
"eslint",
"quality-check",
"hook",
"validation",
"code-quality"
],
"author": "Claude Code Community",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"eslint": ">=7.0.0",
"typescript": ">=4.0.0"
},
"optionalDependencies": {
"glob": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/claude-code-ts-quality-hook.git"
},
"bugs": {
"url": "https://github.com/your-username/claude-code-ts-quality-hook/issues"
},
"homepage": "https://github.com/your-username/claude-code-ts-quality-hook#readme",
"files": [
".claude/",
"README.md",
"examples/"
],
"directories": {
"example": "examples"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
}
}