-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.81 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.81 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
67
68
69
70
71
72
73
74
{
"name": "diffgraph",
"version": "0.1.0",
"description": "Graph-aware diff explorer for repositories",
"type": "module",
"main": "dist/src/cli/index.js",
"bin": {
"diffgraph": "dist/src/cli/index.js"
},
"scripts": {
"dev": "tsx src/cli/index.ts staged --no-open",
"build": "tsc -p tsconfig.json && npm --prefix web run build",
"lint": "eslint src --ext .ts",
"type-check": "tsc --noEmit --project tsconfig.json && npm --prefix web run type-check",
"test": "vitest run && npm --prefix web run test",
"lint-staged": "eslint src --ext .ts && npm --prefix web run lint",
"prepublishOnly": "npm run build"
},
"workspaces": [
"web"
],
"files": [
"dist/src/",
"web/dist/",
"scripts/",
"LICENSE",
"README.md"
],
"keywords": [
"diff",
"graph",
"neo4j",
"code-analysis",
"code-review",
"ast",
"visualization",
"git"
],
"author": "Milton Läufer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/miltonlaufer/diffgraph.git"
},
"homepage": "https://github.com/miltonlaufer/diffgraph",
"bugs": {
"url": "https://github.com/miltonlaufer/diffgraph/issues"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^14.0.3",
"express": "^5.1.0",
"neo4j-driver": "^6.0.1",
"open": "^11.0.0",
"parse-git-diff": "^0.0.19",
"ts-morph": "^27.0.2",
"update-notifier": "^7.3.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.7.2",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"eslint": "^9.37.0",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}