forked from knaus94/prisma-extension-cache-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.54 KB
/
package.json
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
{
"name": "@paulwer/prisma-extension-cache-manager",
"version": "2.5.3",
"repository": {
"type": "git",
"url": "git+https://github.com/paulwer/prisma-extension-cache-manager.git"
},
"author": {
"name": "paulwer",
"url": "https://github.com/paulwer"
},
"keywords": [
"prisma",
"extension",
"cache-manager",
"cache"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {}
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write .",
"pretest": "prisma db push --force-reset --accept-data-loss",
"test": "node --test --test-only --require ts-node/register ./test/main.test.ts",
"prepublishOnly": "npm run format && npm run build && npm run test"
},
"devDependencies": {
"@types/node": "^20.10.6",
"prettier": "^3.1.1",
"prisma": "^6.1.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"@paulwer/prisma-extension-cache-manager": "file:",
"safe-stable-stringify": "^2.5.0"
},
"peerDependencies": {
"@prisma/client": ">=6.0.0 || <7.0.0",
"cache-manager": "^5.2.1"
}
}