-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.05 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "prisma-extension-redis",
"version": "3.0.0",
"description": "Extensive Prisma extension designed for efficient caching and cache invalidation using Redis and Dragonfly Databases",
"repository": {
"type": "git",
"url": "https://github.com/yxx4c/prisma-extension-redis.git"
},
"homepage": "https://github.com/yxx4c/prisma-extension-redis",
"bugs": "https://github.com/yxx4c/prisma-extension-redis/issues",
"author": {
"name": "caxxy",
"email": "mail.yxx4c+npm@gmail.com",
"url": "https://github.com/yxx4c"
},
"keywords": [
"prisma",
"extension",
"redis",
"cache",
"uncache",
"dragonfly",
"middleware",
"manager"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {}
},
"files": ["dist/**/*", "LICENSE", "README.md"],
"scripts": {
"build": "tsup",
"biome": "biome",
"dev": "tsup --watch",
"format": "biome format",
"test": "bun test",
"lint": "biome lint",
"clean": "biome clean",
"compile": "tsc",
"fix": "biome format --fix",
"prepare": "bun run compile",
"pretest": "bunx prisma migrate dev --schema ./test/prisma/schema.prisma",
"posttest": "bun run lint",
"release": "semantic-release"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.13",
"@types/lodash-es": "^4.17.12",
"@types/micromatch": "^4.0.9",
"@types/node": "^20.16.1",
"semantic-release": "^24.2.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": ["main", "next", "beta"]
},
"dependencies": {
"@prisma/client": "^5.18.0",
"iovalkey": "^0.2.1",
"lodash-es": "^4.17.21",
"micromatch": "^4.0.7",
"object-code": "^1.3.3",
"promise-coalesce": "^1.1.2"
}
}