-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
91 lines (91 loc) · 2.6 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@powersync/web",
"version": "1.14.2",
"description": "A Web SDK for JourneyApps PowerSync",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"bin": {
"powersync-web": "bin/powersync.js"
},
"files": [
"bin",
"lib",
"!lib/tests",
"dist"
],
"exports": {
".": "./lib/src/index.js",
"./umd": {
"import": "./dist/index.umd.js",
"require": "./dist/index.umd.js",
"types": "./lib/src/index.d.ts"
},
"./umd/worker/db": {
"import": "./dist/worker/WASQLiteDB.umd.js",
"require": "./dist/worker/WASQLiteDB.umd.js",
"types": "./lib/src/index.d.ts"
},
"./umd/worker/sync": {
"import": "./dist/worker/SharedSyncImplementation.umd.js",
"require": "./dist/worker/SharedSyncImplementation.umd.js",
"types": "./lib/src/index.d.ts"
}
},
"repository": "https://github.com/powersync-ja/powersync-js",
"bugs": {
"url": "https://github.com/powersync-ja/powersync-js/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"homepage": "https://docs.powersync.com",
"scripts": {
"build:tsc": "tsc --build",
"build:webpack-main": "webpack",
"build:webpack-workers": "webpack --config webpack.workers.config.js",
"build": "pnpm run build:tsc && pnpm run build:webpack-main && pnpm run build:webpack-workers",
"build:prod": "pnpm run build:tsc --sourceMap false && pnpm run build:webpack-main && pnpm run build:webpack-workers",
"clean": "rm -rf lib dist tsconfig.tsbuildinfo node_modules",
"watch": "tsc --build -w",
"test": "pnpm build && vitest"
},
"keywords": [
"data sync",
"offline-first",
"sqlite",
"real-time data stream",
"live data"
],
"author": "JOURNEYAPPS",
"license": "Apache-2.0",
"peerDependencies": {
"@journeyapps/wa-sqlite": "^1.2.2",
"@powersync/common": "workspace:^1.25.0"
},
"dependencies": {
"@powersync/common": "workspace:*",
"async-mutex": "^0.4.0",
"bson": "^6.6.0",
"comlink": "^4.4.2",
"commander": "^12.1.0",
"js-logger": "^1.6.1"
},
"devDependencies": {
"@journeyapps/wa-sqlite": "^1.2.2",
"@types/uuid": "^9.0.6",
"crypto-browserify": "^3.12.0",
"p-defer": "^4.0.1",
"source-map-loader": "^5.0.0",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "^5.3.9",
"uuid": "^9.0.1",
"vite": "^6.1.0",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0",
"vm-browserify": "^1.1.2",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}