-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.38 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.38 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
{
"name": "@powersync-community/drizzle-op-sqlite-sync",
"version": "0.1.1",
"description": "Synchronous Drizzle ORM Driver for React Native using op-sqlite",
"type": "module",
"main": "dist/index.cjs",
"module": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"exports": {
".": {
"import": {
"default": "./lib/src/index.js",
"types": "./lib/src/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
}
}
},
"author": "JOURNEYAPPS",
"license": "Apache-2.0",
"files": [
"lib",
"dist"
],
"repository": "https://github.com/powersync-community/drizzle-op-sqlite-sync",
"bugs": {
"url": "https://github.com/powersync-community/drizzle-op-sqlite-sync/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"homepage": "https://docs.powersync.com",
"scripts": {
"build": "tsc -b && rollup --config",
"build:prod": "tsc -b --sourceMap false && rollup --config --sourceMap=false",
"lint": "prettier --check ./src",
"lint:fix": "prettier --write ./src",
"clean": "rm -rf lib dist tsconfig.tsbuildinfo",
"watch": "tsc --build -w",
"test": "vitest",
"test:exports": "attw --pack .",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build:prod && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@pnpm/workspace.find-packages": "^1000.0.33",
"@powersync/drizzle-driver": "^0.7.0",
"@powersync/op-sqlite": "^0.7.14",
"@powersync/react-native": "^1.26.2",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^20.17.6",
"drizzle-orm": "^0.44.5",
"prettier": "^3.6.2",
"rollup": "^4.50.0",
"rollup-plugin-dts": "^6.2.3",
"typescript": "^5.9.2",
"vite": "^6.1.0",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"@op-engineering/op-sqlite": "15.0.1"
}
},
"dependencies": {
"@op-engineering/op-sqlite": "^15.0.1"
},
"packageManager": "pnpm@10.19.0+sha512.c9fc7236e92adf5c8af42fd5bf1612df99c2ceb62f27047032f4720b33f8eacdde311865e91c411f2774f618d82f320808ecb51718bfa82c060c4ba7c76a32b8"
}