-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 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
{
"name": "aicodesight",
"version": "0.2.2",
"description": "CLI that diagnoses projects and generates AI-friendly architectural metadata to prevent code duplication",
"bin": {
"aicodesight": "bin/aicodesight.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node bin/aicodesight.js"
},
"files": [
"dist",
"bin"
],
"keywords": [
"ai",
"architecture",
"claude",
"duplication",
"cli",
"code-analysis",
"aicodesight"
],
"author": "mldix",
"license": "Apache-2.0",
"homepage": "https://github.com/mldixdev/aicodesight#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mldixdev/aicodesight.git"
},
"bugs": {
"url": "https://github.com/mldixdev/aicodesight/issues"
},
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"glob": "^10.3.0",
"ora": "^5.4.1",
"ts-morph": "^22.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@xenova/transformers": "^2.17.2",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18"
}
}