-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.61 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
{
"name": "devlens-agent",
"version": "0.1.0",
"description": "Autonomous code intelligence agent. Spots fragile code, dead logic, and refactoring targets by correlating static analysis with git history — then tells you exactly what to fix, not just what's wrong.",
"license": "MIT",
"author": "DevLens Contributors",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"devlens": "./dist/cli/index.js",
"dl": "./dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check src tests",
"lint:fix": "biome check --write src tests",
"format": "biome format --write src tests",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"cosmiconfig": "^9.0.0",
"simple-git": "^3.27.0",
"typescript": "^5.8.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.13.10",
"tsx": "^4.19.3",
"vitest": "^3.0.9",
"@vitest/coverage-v8": "^3.0.9"
},
"engines": {
"node": ">=18"
},
"keywords": [
"code-health",
"code-quality",
"static-analysis",
"ai-agent",
"refactoring",
"complexity",
"git-hotspots",
"duplication",
"cli",
"developer-tools",
"cicd"
],
"repository": {
"type": "git",
"url": "https://github.com/pxmpsdev/devlens-agent.git"
}
}