-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
74 lines (74 loc) · 2.1 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@powersync/react-native",
"version": "1.18.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"description": "PowerSync - sync Postgres with SQLite in your React Native app for offline-first and real-time data",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"dist"
],
"scripts": {
"build": "tsc -b && rollup -c rollup.config.mjs",
"build:prod": "tsc -b --sourceMap false && rollup -c rollup.config.mjs --sourceMap false",
"clean": "rm -rf lib dist tsconfig.tsbuildinfo dist node_modules",
"watch": "tsc -b -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/powersync-ja/powersync-js.git"
},
"author": "JOURNEYAPPS",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/powersync-ja/powersync-js/issues"
},
"homepage": "https://docs.powersync.com/",
"peerDependencies": {
"@journeyapps/react-native-quick-sqlite": "^2.3.0",
"@powersync/common": "workspace:^1.24.0",
"react": "*",
"react-native": "*"
},
"peerDependenciesMeta": {
"@journeyapps/react-native-quick-sqlite": {
"optional": true
}
},
"dependencies": {
"@powersync/common": "workspace:*",
"@powersync/react": "workspace:*"
},
"devDependencies": {
"@craftzdog/react-native-buffer": "^6.0.5",
"@journeyapps/react-native-quick-sqlite": "^2.3.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@types/async-lock": "^1.4.0",
"async-lock": "^1.4.0",
"bson": "^6.6.0",
"react": "18.2.0",
"react-native": "0.72.4",
"react-native-fetch-api": "^3.0.0",
"rollup": "4.14.3",
"text-encoding": "^0.7.0",
"web-streams-polyfill": "3.2.1"
},
"keywords": [
"data sync",
"offline-first",
"sqlite",
"real-time data stream",
"live data"
]
}