-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.97 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.97 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
102
103
104
105
106
107
{
"name": "manifold",
"version": "0.1.80",
"description": "Multi-agent orchestrator for CLI coding agents",
"main": "out/main/index.js",
"scripts": {
"predev": "npm run rebuild:electron",
"dev": "electron-vite dev",
"build": "electron-vite build",
"prestart": "npm run rebuild:electron",
"start": "electron-vite preview",
"typecheck": "tsc --noEmit",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json",
"pretest": "npm run rebuild:node",
"test": "vitest run",
"pretest:watch": "npm run rebuild:node",
"test:watch": "vitest",
"predist": "npm run rebuild:electron",
"dist": "electron-vite build && electron-builder --mac --publish always",
"postinstall": "chmod +x node_modules/node-pty/prebuilds/darwin-*/spawn-helper 2>/dev/null || true",
"rebuild:node": "node scripts/rebuild-better-sqlite3-node.mjs",
"rebuild:electron": "npx electron-rebuild -f -w better-sqlite3"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"better-sqlite3": "^12.8.0",
"dockview": "^5.0.0",
"electron-updater": "^6.8.3",
"mermaid": "^11.13.0",
"monaco-editor": "^0.52.0",
"monaco-themes": "^0.4.8",
"node-pty": "^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"simple-git": "^3.32.3",
"simple-icons": "^16.9.0",
"uuid": "^11.0.0"
},
"build": {
"appId": "de.malvik.manifold.app",
"productName": "Manifold",
"npmRebuild": false,
"directories": {
"output": "dist"
},
"files": [
"out/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"notarize": true,
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
},
{
"target": "zip",
"arch": [
"arm64",
"x64"
]
}
]
},
"dmg": {
"title": "Manifold",
"sign": false
},
"publish": {
"provider": "github",
"owner": "vippsas",
"repo": "manifold"
}
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.1.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.10.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"electron": "^39.8.4",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"jsdom": "^25.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^4.0.18"
}
}