-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 919 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 919 Bytes
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
{
"name": "nightreign-clone",
"version": "1.0.0",
"description": "Slimveld — a browser/Android Nightreign demo",
"main": "index.js",
"scripts": {
"dev": "vite --port 5173",
"build": "vite build",
"preview": "vite preview",
"smoke": "node tools/smoke.mjs",
"android:sync": "vite build && cap sync android",
"android:apk": "vite build && cap sync android && cd android && ./gradlew assembleDebug",
"phone:connect": "bash tools/phone.sh connect",
"phone:install": "bash tools/phone.sh install",
"phone:log": "bash tools/phone.sh log"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@capacitor/android": "^8.5.0",
"@capacitor/app": "^8.1.1",
"@capacitor/core": "^8.5.0",
"three": "^0.185.1",
"vite": "^8.2.2"
},
"devDependencies": {
"@capacitor/cli": "^8.5.0",
"playwright": "^1.62.1"
}
}