-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 772 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 772 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
{
"name": "hermes-work",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "node scripts/dev-server.mjs",
"build": "node scripts/build.mjs",
"test": "node --test tests/*.test.mjs",
"preview": "node scripts/dev-server.mjs dist 4173",
"desktop": "cargo tauri dev --manifest-path src-tauri/Cargo.toml",
"desktop:build": "cargo tauri build --manifest-path src-tauri/Cargo.toml",
"mobile": "npx cap sync",
"mobile:android": "npx cap open android",
"mobile:ios": "npx cap open ios",
"mobile:doctor": "npx cap doctor"
},
"dependencies": {
"@capacitor/core": "7.6.5"
},
"devDependencies": {
"@capacitor/android": "7.6.5",
"@capacitor/cli": "7.6.5",
"@capacitor/ios": "7.6.5"
}
}