forked from coasys/we
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.56 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.56 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
{
"name": "@we/app-electron",
"version": "0.1.0",
"description": "WE - Decentralized social launcher (Electron)",
"homepage": "https://github.com/jhweir/we",
"author": {
"name": "James Weir",
"email": "your.email@example.com"
},
"license": "MIT",
"type": "module",
"scripts": {
"postinstall": "cd ../../node_modules/.pnpm/electron@*/node_modules/electron 2>/dev/null && node install.js || true",
"dev": "vite",
"prebuild:steps": "node scripts/generate-seed-config.cjs",
"build:steps": "vite build",
"build": "we-build",
"serve": "vite preview",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:3002 && VITE_DEV_SERVER_URL=http://localhost:3002 electron electron/main.js\"",
"preelectron:build": "node scripts/generate-seed-config.cjs",
"electron:build": "vite build && electron-builder --config electron-builder.config.js"
},
"main": "electron/main.js",
"dependencies": {
"@apollo/client": "^3.7.10",
"@coasys/ad4m": "0.11.0",
"@solidjs/router": "^0.15.3",
"@we/app-framework": "workspace:*",
"electron-context-menu": "^4.1.1",
"express": "^5.2.1",
"graphql": "15.7.2",
"graphql-ws": "5.12.0",
"solid-js": "^1.9.5",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@we/cli": "workspace:*",
"concurrently": "^9.1.2",
"electron": "^33.4.11",
"electron-builder": "^25.1.8",
"typescript": "^5.7.2",
"vite": "^6.0.0",
"vite-plugin-solid": "^2.11.6",
"vite-plugin-static-copy": "^3.1.4",
"wait-on": "^8.0.1"
}
}