generated from stijnvanhulle/template
-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
83 lines (83 loc) · 2.79 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"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": "Stijn Van Hulle <stijn@stijnvanhulle.be",
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"docs",
"examples/*",
"e2e"
]
},
"scripts": {
"//changeset:beta:enter": "changeset pre enter beta",
"//changeset:beta:exit": "changeset pre exit",
"build": "turbo run build --filter=./packages/*",
"build:docs": " cd docs && pnpm run build:ci",
"build:examples": "turbo run build --filter=./examples/*",
"changeset": "changeset",
"clean": "turbo run clean",
"format": "biome format --write ./",
"generate": "turbo run generate --filter=./examples/* --continue",
"postgenerate": "bun run lint:fix && bun run format",
"graph": "npx nx graph ",
"install:csb": "corepack enable && pnpm install --frozen-lockfile",
"lint": "biome lint ./packages",
"lint:case": "npx case-police --fix",
"lint:ci": "biome lint ./packages",
"lint:fix": "biome lint --write --unsafe ./packages ./examples && bun run lint:case",
"lint:turbo": "turbo run lint",
"release": "changeset publish",
"release:canary": "changeset publish --no-git-tag",
"start": "turbo run start --filter=./packages/*",
"test": "vitest run --config ./configs/vitest.config.ts --coverage",
"test:bun": "bun test --preload ./configs/setup.ts",
"test:vitest": "vitest run --config ./configs/vitest.config.ts",
"test:watch": "vitest --config ./configs/vitest.config.ts",
"typecheck": "turbo run typecheck --continue --filter='./packages/*'",
"typecheck:examples": "turbo run typecheck --continue --filter='./examples/*'",
"upgrade": "npx taze -r -w --exclude pnpm",
"version": "changeset version",
"version:canary": "changeset version --snapshot canary"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@kubb/config-biome": "workspace:*",
"@kubb/config-ts": "workspace:*",
"@types/node": "^20.17.6",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/ui": "^2.1.4",
"bun-types": "^1.1.34",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"turbo": "^2.2.3",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "5.1.0",
"vitest": "^2.1.4"
},
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=20",
"pnpm": ">=8.15.0"
},
"pnpm": {
"overrides": {
"@changesets/assemble-release-plan": "6.0.0"
},
"patchedDependencies": {
"@changesets/assemble-release-plan@6.0.0": "patches/@changesets__assemble-release-plan@6.0.0.patch"
}
},
"namespace": "@kubb"
}