mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
add sqlocal connection including example
This commit is contained in:
39
packages/sqlocal/package.json
Normal file
39
packages/sqlocal/package.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "@bknd/sqlocal",
|
||||
"version": "0.0.1",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"build": "tsup",
|
||||
"test": "vitest",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"prepublishOnly": "bun run test && bun run typecheck && bun run build"
|
||||
},
|
||||
"dependencies": {
|
||||
"sqlocal": "^0.14.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vitest/browser": "^3.0.8",
|
||||
"@vitest/ui": "^3.0.8",
|
||||
"@types/node": "^22.13.10",
|
||||
"bknd": "workspace:*",
|
||||
"kysely": "^0.27.6",
|
||||
"tsup": "^8.4.0",
|
||||
"typescript": "^5.6.3",
|
||||
"vitest": "^3.0.8",
|
||||
"webdriverio": "^9.12.0"
|
||||
},
|
||||
"tsup": {
|
||||
"entry": ["src/index.ts"],
|
||||
"format": ["esm"],
|
||||
"target": "es2022",
|
||||
"clean": true,
|
||||
"minify": true,
|
||||
"dts": true,
|
||||
"metafile": true,
|
||||
"external": ["bknd", "kysely"]
|
||||
},
|
||||
"files": ["dist", "README.md", "!*.map", "!metafile*.json"]
|
||||
}
|
||||
Reference in New Issue
Block a user