-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "@bentocache/monorepo",
"type": "module",
"private": true,
"packageManager": "pnpm@10.4.1",
"description": "Multi-tier cache module for Node.js. Redis, Upstash, CloudfareKV, File, in-memory and others drivers",
"author": "Julien Ripouteau <julien@ripouteau.com>",
"license": "MIT",
"engines": {
"node": ">=18.16.0"
},
"scripts": {
"typecheck": "pnpm run -r --parallel typecheck",
"build": "pnpm run -r build",
"lint": "eslint .",
"checks": "pnpm lint && pnpm typecheck"
},
"devDependencies": {
"@adonisjs/tsconfig": "^1.4.0",
"@changesets/cli": "^2.28.1",
"@japa/assert": "^4.0.1",
"@japa/expect-type": "^2.0.3",
"@japa/file-system": "^2.3.2",
"@japa/runner": "^4.2.0",
"@julr/tooling-configs": "^4.0.0",
"@swc/core": "^1.10.18",
"@types/node": "^22.13.5",
"c8": "^10.1.3",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"del-cli": "^6.0.0",
"dotenv": "^16.4.7",
"eslint": "^9.21.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.5.2",
"release-it": "^18.1.2",
"testcontainers": "^10.18.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"tsx": "^4.19.3",
"typescript": "~5.7.3"
},
"prettier": "@julr/tooling-configs/prettier",
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild"
]
}
}