-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.41 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
{
"name": "forgeterm",
"private": true,
"version": "0.14.0",
"type": "module",
"main": "dist-electron/main.js",
"bin": {
"forgeterm": "./bin/forgeterm.cjs"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"preview": "vite preview",
"rebuild": "npx @electron/rebuild -w node-pty",
"postinstall": "npx @electron/rebuild -w node-pty"
},
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^5.5.0",
"express": "^5.2.1",
"node-pty": "^1.0.0",
"qrcode": "^1.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"ws": "^8.19.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.2.1",
"electron": "^30.0.1",
"electron-builder": "^24.13.3",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vite-plugin-electron": "^0.28.6",
"vite-plugin-electron-renderer": "^0.14.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"node-pty"
],
"patchedDependencies": {
"dmg-builder": "patches/dmg-builder.patch"
}
}
}