-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.75 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
{
"name": "code-knowledge-map-generator",
"version": "1.0.0",
"description": "AI驱动的代码库知识地图生成器 - 帮助开发者快速理解代码架构",
"main": "dist/index.js",
"type": "module",
"bin": {
"code-knowledge-map": "./dist/cli.js"
},
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/cli.ts",
"build": "tsc",
"start": "node dist/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"type-check": "tsc --noEmit",
"validate-package": "npm ls --depth=0",
"validate-config": "node scripts/validate-config.js",
"prepublishOnly": "npm run lint && npm test && npm run build",
"prepare": "husky install"
},
"keywords": [
"code-analysis",
"knowledge-map",
"architecture",
"ai",
"documentation",
"typescript"
],
"author": "ai-ideas-lab",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^19.0.13",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"inquirer": "^9.2.12",
"js-yaml": "^4.1.0",
"node-html-parser": "^6.1.13",
"openai": "^4.26.0",
"ora": "^7.0.1",
"tree-node-cli": "^1.6.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.8",
"@types/js-yaml": "^4.0.6",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}