-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.88 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
75
76
77
78
79
80
81
82
{
"name": "munder-difflin",
"version": "0.2.2",
"private": true,
"description": "Local multi-agent harness for Claude Code: autonomous agents that message, route, and remember — coordinated by a GOD orchestrator and visualized as avatars at work.",
"main": "out/main/index.js",
"workspaces": [
"packages/*"
],
"author": "Chaitanya Giri",
"homepage": "https://munderdiffl.in/",
"repository": {
"type": "git",
"url": "https://github.com/chaitanyagiri/munder-difflin.git"
},
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"postinstall": "electron-rebuild -f && node tools/ensure-pty-perms.cjs",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json",
"typecheck:pkg": "tsc --noEmit -p packages/won-agent-core/tsconfig.json",
"typecheck": "npm run typecheck:node && npm run typecheck:web && npm run typecheck:pkg",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "vitest run sddpPipelineE2e sddpFullStack --reporter=verbose",
"lint": "eslint src packages",
"dist": "npm run build && electron-builder",
"dist:mac": "npm run build && electron-builder --mac",
"dist:win": "npm run build && electron-builder --win",
"dist:linux": "npm run build && electron-builder --linux"
},
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.0",
"@jsh562/won-agent-core": "github:jsh562/won-agent-core",
"@lezer/highlight": "^1.2.3",
"@uiw/react-codemirror": "^4.25.10",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^5.5.0",
"better-sqlite3": "^11.10.0",
"commit-graph": "^2.4.0",
"localtunnel": "^2.0.2",
"node-pty": "^1.0.0",
"pixi.js": "^8.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"undici": "^6.24.1",
"zustand": "^4.5.5"
},
"devDependencies": {
"@electron/notarize": "^2.5.0",
"@electron/rebuild": "^3.7.0",
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/localtunnel": "^2.0.4",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"electron": "^32.2.0",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"eslint": "^10.4.1",
"eslint-plugin-react-hooks": "^7.1.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.61.0",
"vite": "^5.4.8",
"vitest": "^1.6.1"
}
}