-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "example-capacitor",
"version": "0.0.11",
"description": "Example of using Capacitor with PowerSync",
"main": "index.js",
"private": true,
"author": "PowerSync",
"keywords": [
"capacitor",
"mobile"
],
"type": "module",
"scripts": {
"sync": "npx cap sync",
"ios": "pnpm build && pnpm sync && npx cap run ios",
"android": "pnpm build && pnpm sync && npx cap run android",
"start": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@capacitor/android": "^6.0.0",
"@capacitor/core": "latest",
"@capacitor/ios": "^6.0.0",
"@capacitor/splash-screen": "latest",
"@journeyapps/wa-sqlite": "^1.0.0",
"@powersync/react": "workspace:*",
"@powersync/web": "workspace:*",
"js-logger": "^1.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.23.0"
},
"devDependencies": {
"@capacitor/cli": "^6.0.0",
"@swc/core": "~1.6.0",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"vite": "^5.2.11",
"vite-plugin-require": "^1.2.14",
"vite-plugin-top-level-await": "^1.4.1",
"vite-plugin-wasm": "^3.3.0"
}
}