-
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.56 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.56 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": "@archpulse/codepulse",
"version": "5.2.1",
"repository": {
"type": "git",
"url": "git+https://github.com/archpulse/codepulse-cli.git"
},
"description": "Deep code structure analysis for large JS/TS and Python projects",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"codepulse": "dist/index.js"
},
"scripts": {
"build": "tsc && cp -r src/locales dist/",
"dev": "ts-node src/index.ts",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"workspaces": [
"extensions/*"
],
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@archpulse/codepulse": "^5.2.1",
"@babel/parser": "^7.23.0",
"@babel/traverse": "^7.23.0",
"@babel/types": "^7.23.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@octokit/rest": "^21.1.1",
"ansi-escapes": "^7.3.0",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"chalk": "^4.1.2",
"chokidar": "^5.0.0",
"commander": "^14.0.0",
"glob": "^13.0.0",
"handlebars": "^4.7.8",
"log-update": "^8.0.0",
"node-pty": "^1.1.0",
"ora": "^5.4.1",
"term.js": "^0.0.7",
"ts-morph": "^28.0.0",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.4",
"@types/inquirer": "^9.0.9",
"@types/node": "^20.19.40",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^8.57.1",
"inquirer": "^13.4.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.0",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=16.0.0"
}
}