-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.45 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
{
"name": "@bentocache/monorepo",
"type": "module",
"private": true,
"packageManager": "pnpm@10.33.0",
"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",
"test": "pnpm run -r --parallel test"
},
"devDependencies": {
"@adonisjs/tsconfig": "^1.4.1",
"@changesets/cli": "^2.30.0",
"@japa/assert": "^4.2.0",
"@japa/expect-type": "^2.0.4",
"@japa/file-system": "^2.3.2",
"@japa/runner": "^4.5.0",
"@julr/tooling-configs": "^4.0.0",
"@swc/core": "^1.15.21",
"@types/node": "^25.5.0",
"c8": "^11.0.0",
"copyfiles": "^2.4.1",
"cross-env": "^10.1.0",
"del-cli": "^7.0.0",
"dotenv": "^17.3.1",
"eslint": "^9.39.4",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.1",
"release-it": "^19.2.4",
"testcontainers": "^11.13.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "~5.9.3"
},
"prettier": "@julr/tooling-configs/prettier",
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"better-sqlite3",
"esbuild"
],
"ignoredBuiltDependencies": [
"protobufjs"
]
}
}