-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.19 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
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
{
"name": "@powersync/web",
"version": "2.0.0",
"description": "PowerSync Web SDK",
"main": "lib/index.js",
"module": "lib/index.js",
"type": "module",
"types": "lib/index.d.ts",
"bin": {
"powersync-web": "bin/powersync.cjs"
},
"files": [
"bin",
"lib",
"!lib/tests",
"dist",
"src"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"react-native-web": "./dist/index.react_native_web.js",
"react-native": "./dist/index.react_native_web.js",
"default": "./lib/index.js"
},
"./bundled_worker": {
"types": "./lib/worker/worker.d.ts",
"default": "./dist/worker/worker.js"
}
},
"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": "pnpm run build:tsc && rollup --config",
"build:prod": "pnpm run build",
"clean": "rm -rf lib dist tsconfig.tsbuildinfo",
"watch": "tsc --build -w",
"test": "pnpm build && vitest",
"test:exports": "attw --pack . --entrypoints . --profile=esm-only "
},
"keywords": [
"data sync",
"offline-first",
"sqlite",
"real-time data stream",
"live data"
],
"author": "PowerSync",
"license": "Apache-2.0",
"peerDependencies": {
"@journeyapps/wa-sqlite": "catalog:",
"@powersync/common": "workspace:^2.0.0",
"@powersync/shared-internals": "workspace:^1.0.1"
},
"dependencies": {
"@powersync/common": "workspace:*",
"@powersync/shared-internals": "workspace:*",
"comlink": "catalog:",
"commander": "^12.1.0"
},
"devDependencies": {
"@journeyapps/wa-sqlite": "^1.7.0",
"@types/uuid": "catalog:",
"bson": "catalog:",
"glob": "catalog:",
"p-defer": "catalog:",
"source-map-loader": "^5.0.0",
"uuid": "catalog:",
"vite": "catalog:",
"rollup": "catalog:",
"@rollup/plugin-node-resolve": "catalog:",
"@rollup/plugin-terser": "catalog:",
"estree-walker": "catalog:",
"magic-string": "catalog:"
}
}