-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 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
{
"name": "@powersync/adapter-sql-js",
"version": "0.0.17",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"description": "A development DB adapter based on SQL.js for PowerSync",
"type": "module",
"main": "dist/bundle.mjs",
"module": "dist/bundle.mjs",
"types": "lib/index.d.ts",
"author": "PowerSync",
"license": "Apache-2.0",
"files": [
"lib",
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/powersync-ja/powersync-js.git"
},
"bugs": {
"url": "https://github.com/powersync-ja/powersync-js/issues"
},
"homepage": "https://docs.powersync.com",
"scripts": {
"build": "tsc -b && rollup -c rollup.config.mjs",
"build:prod": "tsc -b && rollup -c rollup.config.mjs",
"clean": "rm -rf lib dist tsconfig.tsbuildinfo",
"test": "vitest"
},
"dependencies": {
"@powersync/common": "workspace:^"
},
"devDependencies": {
"@powersync/sql-js": "0.0.9",
"@powersync/web": "workspace:*",
"@rollup/plugin-alias": "catalog:",
"@rollup/plugin-commonjs": "catalog:",
"@rollup/plugin-node-resolve": "catalog:",
"@types/node": "catalog:",
"@types/sql.js": "^1.4.9",
"chance": "^1.1.9",
"rollup": "catalog:",
"uuid": "catalog:"
}
}