-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
68 lines (68 loc) · 1.8 KB
/
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
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
{
"name": "@sqlite.org/sqlite-wasm",
"version": "3.47.0-build1",
"description": "SQLite Wasm conveniently wrapped as an ES Module.",
"keywords": [
"sqlite",
"sqlite3",
"sqlite-wasm",
"sqlite3-wasm",
"webassembly",
"wasm",
"esm",
"opfs",
"origin-private-file-system"
],
"main": "index.mjs",
"type": "module",
"files": [
"index.d.ts",
"index.mjs",
"sqlite-wasm/"
],
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"main": "./index.mjs",
"browser": "./index.mjs"
},
"./package.json": "./package.json",
"./sqlite3.wasm": "./sqlite-wasm/jswasm/sqlite3.wasm"
},
"bin": {
"sqlite-wasm": "bin/index.js"
},
"scripts": {
"publint": "npx publint",
"check-types": "tsc",
"clean": "shx rm -rf sqlite-wasm",
"build": "npm run clean && node bin/index.js",
"start": "npx http-server --coop",
"fix": "npx prettier . --write",
"prepublishOnly": "npm run build && npm run fix && npm run publint && npm run check-types",
"deploy": "npm run prepare && git add . && git commit -am 'New release' && git push && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sqlite/sqlite-wasm.git"
},
"author": "Thomas Steiner ([email protected])",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sqlite/sqlite-wasm/issues"
},
"homepage": "https://github.com/sqlite/sqlite-wasm#readme",
"devDependencies": {
"decompress": "^4.2.1",
"http-server": "github:vapier/http-server",
"module-workers-polyfill": "^0.3.2",
"node-fetch": "^3.3.2",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"publint": "^0.2.11",
"shx": "^0.3.4",
"typescript": "^5.6.3"
}
}