-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 1006 Bytes
/
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
{
"name": "@xmtp/diesel-wasm-sqlite",
"type": "module",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "rollup -c",
"test:chrome": "wasm-pack test --chrome --features unsafe-debug-query",
"test:chrome:headless": "wasm-pack test --chrome --headless --features unsafe-debug-query",
"test:firefox": "wasm-pack test --firefox --features unsafe-debug-query",
"test:firefox:headless": "wasm-pack test --firefox --headless --features unsafe-debug-query",
"test:safari": "wasm-pack test --safari --features unsafe-debug-query",
"test:safari:headless": "wasm-pack test --safari --headless --features unsafe-debug-query"
},
"dependencies": {
"@sqlite.org/sqlite-wasm": "latest"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.24.4",
"rollup-plugin-copy": "^3.5.0",
"wasm-pack": "^0.13.1"
}
}