-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 2.94 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 2.94 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
{
"name": "@unite-2/webapp-runtime",
"description": "Web App Runtime Loader",
"version": "1.0.0",
"private": false,
"type": "module",
"scripts": {
"build:js": "npm install --include=dev",
"start:js": "node ./fastify-js/index.mjs --port 443 --address 0.0.0.0 --debug --options --esm",
"dev:js": "npm run start:js",
"test:js": "npm run test:dev:js",
"test:dev:js": "vite dev --config vite.config.ts",
"test:test:js": "echo 'No tests configured for fastify-server' && exit 0",
"build": "npm install --include=dev",
"cwsp:dev": "npm run dev --prefix ./cwsp",
"cwsp:android": "npm run build --prefix ./cwsp",
"cwsp:android:unified": "npm run build --prefix ./cwsp",
"cwsp:capacitor": "npm run build:capacitor --prefix ./cwsp",
"cwsp:capacitor:android": "npm run build:capacitor:android --prefix ./cwsp",
"cwsp:build": "node ./pack-portable.mjs",
"cwsp:build:readable": "npm run build:portable:readable --prefix ./cwsp",
"cwsp:deploy:portable": "node ./scripts/deploy-cwsp-portable.mjs",
"cwsp:deploy:server": "node ./scripts/deploy-cwsp-server.mjs",
"distribute": "npm run cwsp:deploy:server",
"build:distribute": "npm run cwsp:deploy:server",
"build:portable:distribute": "npm run build:portable:distribute --prefix ./cwsp",
"cwsp:start": "node ./launcher.mjs",
"cwsp:pm2": "pm2 start ecosystem.config.cjs --update-env",
"cwsp:pm2:server": "npm run start:pm2:server --prefix ./cwsp",
"cwsp:pack-extension": "node ./pack-extension.mjs",
"start": "node ./endpoint/fastify/scripts/index.mjs --port 443 --address 0.0.0.0 --debug --options --esm",
"dev": "npm run dev --prefix ./cwsp",
"dev:endpoint": "node ./endpoint/fastify/scripts/index.mjs --port 443 --address 0.0.0.0 --debug --options --esm",
"test": "npm run test:dev",
"test:dev": "vite dev --config vite.config.ts",
"test:test": "echo 'No tests configured for webapp-runtime' && exit 0",
"tauri": "tauri"
},
"browserslist": [
"last 1 chrome version",
"last 1 edge version"
],
"devDependencies": {
"@cap-js-community/websocket": "^1.10.0",
"@capacitor/android": ">=8.3.0",
"@capacitor/cli": ">=8.3.0",
"@capacitor/clipboard": "^8.0.1",
"@capacitor/core": ">=8.3.0",
"@capacitor/http": "^0.0.2",
"@electron/rebuild": ">=4.0.3",
"@fastify/cors": ">=11.2.0",
"@fastify/multipart": ">=10.0.0",
"@gachlab/capacitor-permissions": "^2.1.0",
"@tauri-apps/api": ">=2.1.1",
"@tauri-apps/cli": ">=2.1.0",
"@webviewjs/webview": ">=0.1.4",
"capacitor-native-settings": "^8.1.0",
"clipboardy": ">=5.3.1",
"electron": ">=42.0.0-beta.1",
"electron-builder": ">=26.8.1",
"typescript": ">=6.0.0-beta",
"vite": "^8.0.7"
}
}