-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.94 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.94 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
{
"name": "claude-code-doctor",
"version": "2.0.0",
"description": "Diagnose, lint, and auto-fix your Claude Code setup. 9 custom ML engines: prompt injection scanner, dependency graph intelligence, CLAUDE.md auto-generator, token cost predictor. Zero external ML dependencies.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"claude-doctor": "./bin/cli.js",
"ccd": "./bin/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node bin/cli.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"prompt-injection",
"ai-security",
"dependency-graph",
"token-optimizer",
"claudemd",
"diagnostics",
"health-check",
"linter",
"mcp",
"developer-tools",
"cli",
"ai-tools",
"machine-learning",
"codebase-analysis",
"auto-fix"
],
"author": "Mishit18",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Mishit18/claude-code-doctor.git"
},
"bugs": {
"url": "https://github.com/Mishit18/claude-code-doctor/issues"
},
"homepage": "https://github.com/Mishit18/claude-code-doctor#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"ora": "^5.4.1",
"glob": "^10.3.10",
"yaml": "^2.3.4",
"strip-json-comments": "^3.1.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.0",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.4.9",
"typescript": "^5.3.3",
"eslint": "^8.56.0",
"prettier": "^3.1.1"
}
}