-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "devlensio",
"version": "0.4.3",
"description": "Codebase intelligence engine for TypeScript/JavaScript/Reactjs/Nextjs repositories.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "bun --watch src/server/index.ts",
"start": "bun src/server/index.ts",
"build": "tsc --project tsconfig.build.json",
"test": "bun test",
"export-graph": "bun src/debug/exportGraph.ts"
},
"keywords": ["codebase", "graph", "ast", "typescript", "javascript", "devtools"],
"author": "",
"license": "AGPL-3.0",
"files": [
"dist/**/*"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.104.2",
"@google/genai": "^2.8.0",
"dotenv": "^17.4.2",
"openai": "^6.42.0",
"simple-git": "^3.36.0",
"ts-morph": "^28.0.0",
"uuid": "^11.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@types/uuid": "^11.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}