-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.62 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
{
"name": "@subframe7536/sqlite-wasm",
"version": "1.3.1",
"description": "Typesafe wa-sqlite wrapper, persist data to IndexedDB or OPFS",
"keywords": [
"IndexedDB",
"sqlite",
"typescript",
"wasm"
],
"license": "MIT",
"author": "subframe7536",
"repository": "https://github.com/subframe7536/sqlite-wasm",
"files": [
"dist"
],
"type": "module",
"exports": {
".": "./dist/index.js",
"./constant": "./dist/constant.js",
"./fs-handle": "./dist/fs-handle.js",
"./idb": "./dist/idb.js",
"./idb-memory": "./dist/idb-memory.js",
"./opfs": "./dist/opfs.js",
"./opfs-wa": "./dist/opfs-wa.js",
"./package.json": "./package.json",
"./wasm": "./dist/wa-sqlite.wasm",
"./wasm-async": "./dist/wa-sqlite-async.wasm",
"./dist/*": "./dist/*"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "vite serve playground",
"build": "bun run scripts/generate-sqlite-types.ts && oxfmt --write src/sqlite-types.d.ts src/wa-sqlite-modules.d.ts && tsdown",
"update": "bun run download.ts",
"qa": "bun run scripts/generate-sqlite-types.ts && oxlint --fix ./src && oxfmt --write ./src && tsc --noEmit",
"release": "bun run qa && bun run build && bumpp --all"
},
"devDependencies": {
"@subf/config": "^0.2.1",
"@types/node": "^22.20.0",
"bumpp": "^11.1.0",
"oxfmt": "^0.56.0",
"oxlint": "^1.71.0",
"tar": "^7.5.17",
"tsdown": "^0.22.3",
"typescript": "^6.0.3",
"uuidv7": "^1.0.2",
"vite": "^8.1.0",
"zen-mitt": "^3.1.0"
},
"packageManager": "bun@1.2.13"
}