-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 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
{
"name": "@subframe7536/sqlite-wasm",
"version": "1.1.0",
"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": {
"typecheck": "tsc --noEmit",
"lint": "oxlint --fix ./src",
"format": "oxfmt",
"dev": "vite serve playground",
"build": "tsdown",
"update": "bun run download.ts",
"qa": "bun run typecheck && bun run lint && bun run format",
"release": "bun run qa && bun run build && bumpp --all"
},
"devDependencies": {
"@subf/config": "^0.2.1",
"@types/node": "^22.18.6",
"bumpp": "^10.2.3",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"tar": "^7.5.1",
"tsdown": "^0.21.8",
"typescript": "^5.9.2",
"uuidv7": "^1.0.2",
"vite": "^8.0.0",
"zen-mitt": "^3.1.0"
},
"packageManager": "bun@1.2.13"
}