-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.08 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@joggr/fastify-prisma",
"version": "7.0.0",
"description": "Fastify Prisma plugin connection to share the same connection across your entire server.",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"README.md",
"package.json",
"dist/**/*"
],
"scripts": {
"prebuild": "yarn clean:dist",
"build": "yarn prebuild && pkgroll",
"clean": "yarn clean:dist && yarn clean:cache",
"clean:cache": "rimraf --glob \"**/node_modules\"",
"clean:dist": "rimraf --glob \"./dist\"",
"prisma:generate": "prisma generate --schema ./tests/prisma/schema.prisma",
"analyze:fmt": "biome check",
"analyze:ci": "biome ci --diagnostic-level=error",
"analyze:types": "tsc --noEmit",
"fix": "biome check --fix",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joggrdocs/fastify-prisma.git"
},
"keywords": [
"fastify",
"plugin",
"prisma",
"fastify-plugin"
],
"author": "Joggr Engineering <engineering@joggr.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joggrdocs/fastify-prisma/issues"
},
"homepage": "https://github.com/joggrdocs/fastify-prisma#readme",
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@prisma/adapter-better-sqlite3": "7.3.0",
"@prisma/client": "7.3.0",
"@tsconfig/recommended": "^1.0.13",
"@types/better-sqlite3": "^7.6.13",
"better-sqlite3": "^12.6.2",
"fastify": "^5.7.2",
"husky": "^9.1.7",
"pkgroll": "^2.23.0",
"prisma": "7.3.0",
"rimraf": "^6.1.2",
"type-fest": "^5.4.3",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.18"
},
"dependencies": {
"@prisma/client": "7.3.0",
"fastify-plugin": "^5.1.0"
},
"peerDependencies": {
"fastify": "5.x"
},
"packageManager": "yarn@4.9.2"
}