-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.15 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.15 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
{
"name": "claude-rules-doctor",
"version": "0.2.2",
"description": "Your Claude Code rules silently fail. We catch them.",
"type": "module",
"bin": {
"rules-doctor": "dist/cli.js",
"claude-rules-doctor": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nulone/claude-rules-doctor.git"
},
"homepage": "https://github.com/nulone/claude-rules-doctor#readme",
"bugs": {
"url": "https://github.com/nulone/claude-rules-doctor/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"claude-code",
"claude",
"rules",
"linter",
"cli",
"glob",
"validation",
"dead-rules"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"glob": "^10.3.10",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.3",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}