-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
33 lines (33 loc) · 1.24 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
{
"name": "@keyv/mono-repo",
"version": "1.0.0",
"type": "module",
"description": "Keyv Mono Repo",
"repository": "https://github.com/jaredwray/keyv.git",
"author": "Jared Wray <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build:keyv:serialize": "cd packages/serialize && pnpm build",
"build:keyv": "cd packages/keyv && pnpm build",
"build": "pnpm build:keyv:serialize && pnpm build:keyv && pnpm recursive run build",
"test": "pnpm build && c8 --reporter=lcov pnpm -r --workspace-concurrency 1 test:ci",
"test:services:start": "chmod +x ./test-services-start.sh && ./test-services-start.sh",
"test:services:stop": "chmod +x ./test-services-stop.sh && ./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"
},
"devDependencies": {
"@types/node": "^22.8.6",
"@vitest/coverage-v8": "^2.1.4",
"c8": "^10.1.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4",
"webpack": "^5.96.1",
"xo": "^0.59.3"
}
}