-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.74 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.74 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
{
"name": "@keyv/mono-repo",
"version": "6.0.0-alpha.4",
"type": "module",
"description": "Keyv Mono Repo",
"repository": "https://github.com/jaredwray/keyv.git",
"author": "Jared Wray <me@jaredwray.com>",
"license": "MIT",
"private": true,
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">= 20"
},
"scripts": {
"build:keyv": "pnpm recursive --filter=keyv run build",
"build": "pnpm build:keyv && pnpm recursive --filter '!keyv' run build",
"build:list": "pnpm build:keyv && pnpm --filter '!keyv' --workspace-concurrency 1 -r build",
"test": "pnpm -r test",
"test:list": "pnpm -r --workspace-concurrency 1 test",
"test:ci": "pnpm -r test:ci",
"test:services:start": "chmod +x ./scripts/test-services-start.sh && ./scripts/test-services-start.sh",
"test:services:stop": "chmod +x ./scripts/test-services-stop.sh && ./scripts/test-services-stop.sh",
"website:build": "pnpm recursive --filter @keyv/website run website:build",
"website:serve": "pnpm recursive --filter @keyv/website run website:serve",
"clean": "rimraf node_modules pnpm-lock.yaml && pnpm recursive run clean",
"version:sync": "pnpm tsx scripts/version-sync.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@faker-js/faker": "^10.2.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.18",
"js-yaml": "^4.1.1",
"rimraf": "^6.1.2",
"tsd": "^0.33.0",
"tsdown": "^0.21.7",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"msgpackr-extract",
"protobufjs",
"sqlite3",
"sqlite325h",
"unrs-resolver"
]
}
}