-
-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) 路 1.68 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) 路 1.68 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": "@kubb/root",
"version": "0.0.0",
"private": true,
"description": "Kubb's monorepo",
"repository": {
"type": "git",
"url": "https://github.com/kubb-labs/kubb.git"
},
"license": "MIT",
"author": "stijnvanhulle",
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"internals/*"
]
},
"scripts": {
"build": "NODE_OPTIONS='--max-old-space-size=8192' turbo run build --filter=./packages/*",
"changeset": "changeset",
"clean": "turbo run clean",
"format": "oxfmt -c oxfmt.config.ts packages internals configs",
"graph": "npx nx graph ",
"lint": "oxlint -c oxlint.config.ts ./packages",
"lint:fix": "oxlint -c oxlint.config.ts --fix ./packages",
"start": "turbo run start --filter=./packages/*",
"test": "vitest run --config ./configs/vitest.config.ts",
"test:bench": "NODE_OPTIONS='--max_old_space_size=4096' vitest bench --config ./configs/vitest.bench.config.ts",
"test:watch": "vitest --config ./configs/vitest.config.ts",
"typecheck": "turbo run typecheck --continue --filter='./packages/*'",
"upgrade": "npx taze -r -w --exclude pnpm --maturity-period 3"
},
"devDependencies": {
"@changesets/changelog-github": "^1.0.0",
"@changesets/cli": "^3.0.1",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"bun-types": "^1.4.0",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"taze": "^21.1.0",
"tsdown": "catalog:",
"turbo": "^2.10.11",
"typescript": "catalog:",
"vitest": "catalog:"
},
"packageManager": "pnpm@11.22.0",
"engines": {
"node": ">=22",
"pnpm": ">=11.0.0"
},
"namespace": "@kubb"
}