Skip to content

Commit bf99fda

Browse files
committed
Add package.json
1 parent 7b95a78 commit bf99fda

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed

sqlite-wasm/package.json

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"name": "@sqliteai/sqlite-wasm",
3+
"version": "3.49.2-sync.0.8.29-vector.0.9.21",
4+
"description": "SQLite Wasm compiled with automatically initialized sqlite-sync and sqlite-vector extensions. Conveniently packaged as an ES Module for effortless integration.",
5+
"keywords": [
6+
"sqlite",
7+
"sqlite3",
8+
"sqlite-wasm",
9+
"sqlite3-wasm",
10+
"webassembly",
11+
"wasm",
12+
"esm",
13+
"opfs",
14+
"origin-private-file-system",
15+
"sync",
16+
"offsync",
17+
"cloudsync",
18+
"sqlite-sync",
19+
"vector",
20+
"sqlite-vector",
21+
"sqliteai"
22+
],
23+
"main": "index.mjs",
24+
"node": "node.mjs",
25+
"type": "module",
26+
"files": [
27+
"index.d.ts",
28+
"index.mjs",
29+
"node.mjs",
30+
"sqlite-wasm/"
31+
],
32+
"types": "index.d.ts",
33+
"exports": {
34+
".": {
35+
"types": "./index.d.ts",
36+
"node": "./node.mjs",
37+
"import": "./index.mjs",
38+
"main": "./index.mjs",
39+
"browser": "./index.mjs"
40+
},
41+
"./package.json": "./package.json",
42+
"./sqlite3.wasm": "./sqlite-wasm/jswasm/sqlite3.wasm"
43+
},
44+
"scripts": {
45+
"publint": "npx publint",
46+
"check-types": "tsc",
47+
"clean": "cd .. && git clean -fdX",
48+
"build": "npm run clean && cd .. && ./build.sh",
49+
"start": "npx http-server --coop",
50+
"fix": "npx prettier . --write",
51+
"prepublishOnly": "npm run build && npm run fix && npm run publint && npm run check-types",
52+
"deploy": "npm run prepublishOnly && npm publish --access public --provenance"
53+
},
54+
"repository": {
55+
"type": "git",
56+
"url": "git+https://github.com/sqliteai/sqlite-wasm.git"
57+
},
58+
"author": "Gioele Cantoni ([email protected])",
59+
"license": "Apache-2.0",
60+
"bugs": {
61+
"url": "https://github.com/sqliteai/sqlite-wasm/issues"
62+
},
63+
"homepage": "https://github.com/sqliteai/sqlite-wasm#readme",
64+
"devDependencies": {
65+
"http-server": "github:vapier/http-server",
66+
"prettier": "^3.5.3",
67+
"prettier-plugin-jsdoc": "^1.3.2",
68+
"publint": "^0.3.12",
69+
"typescript": "^5.8.3"
70+
}
71+
}

0 commit comments

Comments
 (0)