-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "isomorphic-sqlite",
"version": "0.0.0",
"description": "Isomorphic SQLite Driver",
"keywords": [
"sqlite",
"sqlite3",
"isomorphic",
"database",
"node-sqlite",
"bun-sqlite"
],
"homepage": "https://github.com/shahradelahi/isomorphic-sqlite",
"repository": "github:shahradelahi/isomorphic-sqlite",
"license": "MIT",
"author": "Shahrad Elahi <shahrad@litehex.com> (https://github.com/shahradelahi)",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**",
"!**/*.d.cts"
],
"scripts": {
"bench": "vitest bench --run",
"build": "pnpm typecheck && tsup",
"clean": "git clean -dfx node_modules dist .tsbuildinfo",
"dev": "tsup --watch",
"docs:generate": "echo 'No documentation generator configured.'",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "pnpm typecheck && eslint .",
"lint:fix": "eslint --fix .",
"prepublishOnly": "pnpm build && pnpm lint && pnpm format:check && pnpm test",
"test": "pnpm test:node && pnpm test:sqlite3",
"test:bun": "ISOMORPHIC_SQLITE_DRIVER=bun:sqlite bun test",
"test:node": "ISOMORPHIC_SQLITE_DRIVER=node:sqlite vitest --run",
"test:sqlite3": "ISOMORPHIC_SQLITE_DRIVER=better-sqlite3 vitest --run",
"typecheck": "tsc --noEmit"
},
"prettier": "@shahrad/prettier-config",
"devDependencies": {
"@shahrad/eslint-config": "^1.0.1",
"@shahrad/prettier-config": "^1.2.2",
"@shahrad/tsconfig": "^1.2.0",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.0",
"@types/node": "^24.7.2",
"eslint": "^9.37.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"optionalDependencies": {
"better-sqlite3": "^12.4.1"
},
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d"
}