database-petani-mobile/node_modules/@sqlite.org/sqlite-wasm/package.json
2026-02-23 16:39:35 +07:00

81 lines
2.1 KiB
JSON

{
"name": "@sqlite.org/sqlite-wasm",
"version": "3.51.2-build6",
"description": "SQLite Wasm conveniently wrapped as an ES Module.",
"type": "module",
"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",
"keywords": [
"sqlite",
"sqlite3",
"sqlite-wasm",
"sqlite3-wasm",
"webassembly",
"wasm",
"esm",
"opfs",
"origin-private-file-system"
],
"publishConfig": {
"access": "public"
},
"main": "./dist/index.mjs",
"node": "./dist/node.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"node": "./dist/node.mjs",
"import": "./dist/index.mjs",
"main": "./dist/index.mjs",
"browser": "./dist/index.mjs"
},
"./package.json": "./package.json",
"./sqlite3.wasm": "./dist/sqlite3.wasm"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "vitest",
"test:node": "vitest --project node",
"test:browser": "vitest --project browser",
"publint": "npx publint",
"check-types": "tsc",
"build": "tsdown",
"start": "npx http-server --coop",
"start:node": "cd demo && node node.mjs",
"fix": "npx prettier . --write",
"prepare": "lefthook install",
"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"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"happy-dom": "^20.4.0",
"http-server": "github:vapier/http-server",
"lefthook": "2.0.16",
"playwright": "^1.58.0",
"prettier": "^3.8.1",
"prettier-plugin-jsdoc": "^1.8.0",
"publint": "^0.3.17",
"tsdown": "^0.20.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}