-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 KB
/
package.json
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
{
"name": "capacitor-app",
"version": "1.0.0",
"description": "An Amazing Capacitor App",
"keywords": [
"capacitor",
"mobile"
],
"scripts": {
"dev": "vite",
"build": "npm-run-all -p build:*",
"build:web": "tsc && vite build",
"postbuild": "cap sync && npm run copy",
"copy": "rm -rf electron/app && mkdir electron/app && cp -r dist/* electron/app/",
"open:android": "cap open android",
"open:ios": "cap open ios",
"open:desktop": "cap open @capacitor-community/electron",
"start:android": "cap run android",
"start:ios": "cap run ios",
"start:web": "vite preview"
},
"dependencies": {
"@capacitor-community/electron": "^4.0.3",
"@capacitor/android": "^3.4.0",
"@capacitor/camera": "latest",
"@capacitor/core": "latest",
"@capacitor/ios": "^3.4.0",
"@capacitor/splash-screen": "latest",
"@capacitor/status-bar": "^1.0.7",
"lit": "^2.1.1"
},
"devDependencies": {
"@capacitor/cli": "latest",
"@types/node": "^17.0.12",
"@web/dev-server": "^0.1.29",
"npm-run-all": "^4.1.5",
"typescript": "^4.4.4",
"vite": "^2.7.2",
"vite-plugin-pwa": "^0.11.13"
},
"author": "",
"license": "ISC"
}