-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.26 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.26 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
{
"name": "opencode-desktop",
"version": "0.3.0",
"license": "LGPL-3.0-or-later",
"type": "module",
"main": "./dist/main/index.js",
"author": "mattyatea",
"scripts": {
"dev": "NODE_ENV=development node scripts/dev.js",
"build": "node scripts/build.js",
"build:main": "vite build --config vite.main.config.ts",
"build:preload": "vite build --config vite.preload.config.ts",
"build:renderer": "vite build --config vite.renderer.config.ts",
"postinstall": "electron-builder install-app-deps",
"pack": "npm run build && electron-builder --mac --config",
"dist": "npm run build && electron-builder --mac --config --publish never",
"typecheck": "tsc --noEmit && vue-tsc --noEmit",
"format": "echo 'No format script configured'",
"lint": "echo 'No lint script configured'"
},
"dependencies": {
"@orpc/client": "^1.13.4",
"@orpc/server": "^1.13.4",
"@tabler/icons-vue": "^3.36.1",
"vue": "^3.5.27",
"vue-i18n": "^11.2.8",
"vue-router": "^5.0.2",
"vue-tsc": "^3.2.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitejs/plugin-vue": "^6.0.4",
"electron": "^40.2.1",
"electron-builder": "^26.7.0",
"typescript": "^5.9.3",
"vite": "8.0.0-beta.13"
}
}