-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.42 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.42 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
{
"name": "runbox",
"version": "0.1.0",
"private": true,
"description": "Runbox desktop code runner built with Electron, React, and an extensible language adapter model.",
"runboxUpdater": {
"provider": "github",
"owner": "",
"repo": ""
},
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"typecheck": "tsc --noEmit",
"package:mac": "npm run build && electron-builder --mac",
"package:win": "npm run build && electron-builder --win"
},
"build": {
"appId": "com.runbox.desktop",
"productName": "Runbox",
"directories": {
"output": "release/${version}"
},
"files": [
"out/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis"
]
}
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"electron-updater": "^6.8.3",
"extract-zip": "^2.0.1",
"monaco-editor": "^0.52.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"typescript": "^5.7.2",
"vite": "^5.4.11"
}
}