-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 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
{
"name": "prisma-adapter-node-sqlite",
"version": "0.0.1",
"description": "Prisma adapter for native `node:sqlite` database",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "pnpm build",
"test": "tsx --env-file=.env example/index.ts"
},
"keywords": [
"prisma",
"adapter",
"sqlite",
"node-sqlite",
"node:sqlite",
"node-sqlite3",
"node:sqlite3",
"node-sqlite3-promise",
"node:sqlite3-promise"
],
"author": "Twilight <hello@twlite.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/twlite/prisma-adapter-node-sqlite.git"
},
"bugs": {
"url": "https://github.com/twlite/prisma-adapter-node-sqlite/issues"
},
"homepage": "https://github.com/twlite/prisma-adapter-node-sqlite#readme",
"packageManager": "pnpm@10.20.0",
"devDependencies": {
"@prisma/client": "^6.18.0",
"@types/node": "^24.9.2",
"prisma": "^6.18.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"dependencies": {
"@prisma/driver-adapter-utils": "^6.18.0",
"async-mutex": "^0.5.0"
}
}