mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
43 lines
1004 B
JSON
43 lines
1004 B
JSON
{
|
|
"name": "@bknd/sqlocal",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"test": "vitest --run",
|
|
"updater": "bun x npm-check-updates -ui",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepublishOnly": "bun run typecheck && bun run test && bun run build"
|
|
},
|
|
"dependencies": {
|
|
"sqlocal": "^0.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitest/browser": "^3.0.8",
|
|
"@vitest/ui": "^3.0.8",
|
|
"@types/node": "^24.10.1",
|
|
"bknd": "workspace:*",
|
|
"kysely": "^0.27.6",
|
|
"tsup": "^8.4.0",
|
|
"typescript": "^5.8.2",
|
|
"vitest": "^3.0.8",
|
|
"webdriverio": "^9.12.0"
|
|
},
|
|
"tsup": {
|
|
"entry": ["src/index.ts"],
|
|
"format": ["esm"],
|
|
"target": "es2022",
|
|
"clean": true,
|
|
"minify": true,
|
|
"dts": true,
|
|
"external": ["bknd", "kysely"]
|
|
},
|
|
"files": ["dist", "README.md", "!*.map", "!metafile*.json"]
|
|
}
|