-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.7 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.7 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
{
"name": "@auriti/diffwatch",
"version": "1.0.0",
"description": "Visualizzatore diff in tempo reale per Claude Code CLI — web UI con accept/reject e rollback",
"type": "module",
"bin": {
"diffwatch": "dist/cli.js"
},
"main": "./dist/server.js",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node scripts/build.js",
"dev": "node scripts/build.js && node dist/cli.js start",
"start": "node dist/cli.js start",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude-code",
"diff",
"code-review",
"real-time",
"hooks",
"cli",
"ai-coding",
"file-watcher"
],
"author": "Juan Camilo Auriti",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/auriti/diffwatch.git"
},
"homepage": "https://github.com/auriti/diffwatch#readme",
"bugs": {
"url": "https://github.com/auriti/diffwatch/issues"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"diff": "^7.0.0",
"express": "^5.1.0",
"open": "^10.1.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.5.0",
"diff2html": "^3.4.48",
"esbuild": "^0.25.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"semantic-release": "^25.0.3",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
}
}