-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.2 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.2 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "war-room",
"version": "0.17.0",
"private": true,
"description": "Shared cockpit dashboard. Self-hostable team workspace that wraps a local Claude Code agent in a Discord-style multi-server interface.",
"license": "MIT",
"author": "PythonLuvr",
"main": "electron/main.js",
"scripts": {
"dev": "next dev",
"dev:blank": "node scripts/dev-blank.js",
"demo": "node scripts/demo.js",
"update-frameworks": "node scripts/update-frameworks.mjs",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "npm run test:migration && npm run test:smoke",
"test:migration": "tsx --test tests/migration.test.ts",
"test:smoke": "playwright test",
"electron:dev": "cross-env NODE_ENV=development electron .",
"electron:dev:full": "concurrently -k \"npm:dev\" \"wait-on http://localhost:3000 && npm run electron:dev\"",
"electron:build": "next build --webpack && npm run electron:rebuild-native && electron-builder",
"electron:pack": "next build --webpack && npm run electron:rebuild-native && electron-builder --dir",
"electron:rebuild-native": "node scripts/rebuild-native.js",
"release": "node scripts/release.js",
"ship": "node scripts/ship.js"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@types/ws": "^8.18.1",
"@xyflow/react": "^12.10.2",
"better-sqlite3": "^12.10.0",
"chokidar": "^5.0.0",
"electron-updater": "^6.8.3",
"highlight.js": "^11.11.1",
"livekit-client": "^2.19.0",
"livekit-server-sdk": "^2.15.2",
"lucide-react": "^1.14.0",
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"recharts": "^3.8.1",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"ws": "^8.20.1"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^41.6.0",
"electron-builder": "^26.8.1",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"png-to-ico": "^3.0.1",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"typescript": "^5",
"wait-on": "^9.0.10"
},
"build": {
"appId": "com.warroom.app",
"productName": "War Room",
"directories": {
"output": "build/electron"
},
"files": [
"electron/**/*",
"package.json"
],
"afterPack": "electron/after-pack.js",
"win": {
"target": "nsis",
"artifactName": "war-room-setup-${version}.${ext}",
"icon": "branding/icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"installerIcon": "branding/icon.ico",
"uninstallerIcon": "branding/icon.ico"
},
"publish": {
"provider": "generic",
"url": "https://example.invalid/UNSET-set-WAR_ROOM_UPDATE_URL-before-release",
"channel": "latest"
}
}
}