-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.65 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": "@libsql/libsql-wasm-experimental",
"version": "0.0.3",
"description": "libSQL Wasm packaged as an ES module.",
"keywords": [
"sqlite",
"sqlite3",
"sqlite-wasm",
"sqlite3-wasm",
"webassembly",
"wasm",
"esm",
"opfs",
"origin-private-file-system"
],
"main": "index.mjs",
"node": "node.mjs",
"type": "module",
"files": [
"index.d.ts",
"index.mjs",
"node.mjs",
"sqlite-wasm/"
],
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"node": "./node.mjs",
"import": "./index.mjs",
"main": "./index.mjs",
"browser": "./index.mjs"
},
"./package.json": "./package.json"
},
"bin": {
"sqlite-wasm": "bin/index.js"
},
"scripts": {
"publint": "npx publint",
"clean": "shx rm -rf sqlite-wasm",
"build": "npm run clean && node bin/index.js",
"start": "npx http-server --coop",
"fix": "npx prettier . --write",
"update": "npm run build && npm run fix && npm run publint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tursodatabase/libsql-wasm.git"
},
"author": "Thomas Steiner ([email protected])",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tursodatabase/libsql-wasm/issues"
},
"homepage": "https://github.com/tursodatabase/libsql-wasm#readme",
"devDependencies": {
"cheerio": "^1.0.0-rc.12",
"decompress": "^4.2.1",
"http-server": "github:vapier/http-server",
"module-workers-polyfill": "^0.3.2",
"node-fetch": "^3.3.2",
"prettier": "^3.1.0",
"publint": "^0.2.5",
"prettier-plugin-jsdoc": "^1.1.1",
"shx": "^0.3.4"
}
}