73 lines
1.9 KiB
JSON
73 lines
1.9 KiB
JSON
{
|
|
"name": "@sqlite.org/sqlite-wasm",
|
|
"version": "3.50.4-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",
|
|
"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",
|
|
"./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",
|
|
"start:node": "cd demo && node node.mjs",
|
|
"fix": "npx prettier . --write",
|
|
"prepublishOnly": "npm run build && npm run fix && npm run publint && npm run check-types",
|
|
"deploy": "npm run prepublishOnly && 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 (tomac@google.com)",
|
|
"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.6.2",
|
|
"prettier-plugin-jsdoc": "^1.3.3",
|
|
"publint": "^0.3.12",
|
|
"shx": "^0.4.0",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|