-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) 路 2.58 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) 路 2.58 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
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
84
85
86
87
88
89
{
"name": "@kubb/fabric",
"version": "0.0.0",
"private": true,
"description": "Language-agnostic toolkit for generating code and files using JSX and TypeScript - A plugin-based code generation framework",
"keywords": [
"codegen",
"code-generator",
"typescript",
"jsx",
"react",
"plugin-system",
"monorepo",
"fabric",
"kubb"
],
"repository": {
"type": "git",
"url": "https://github.com/kubb-labs/fabric.git"
},
"license": "MIT",
"author": "stijnvanhulle",
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"scripts": {
"build": "turbo run build --filter=./packages/*",
"changeset": "changeset",
"generate": "turbo run generate --filter=./examples/* --continue",
"postgenerate": "pnpm run lint:fix && pnpm run format",
"clean": "turbo run clean",
"format": "biome format --write ./ && biome check --fix --unsafe",
"graph": "npx nx graph ",
"lint": "biome lint ./packages",
"lint:fix": "biome lint --write --unsafe ./packages && manypkg fix",
"lint:spell": "cspell \"**/*.{ts,md}\" --config ./cspell.json --no-progress",
"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: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"
},
"manypkg": {
"ignoredRules": [
"EXTERNAL_MISMATCH"
]
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.30.0",
"@manypkg/cli": "^0.25.1",
"@size-limit/file": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "^4.1.1",
"@vitest/ui": "^4.1.1",
"bun-types": "^1.3.11",
"cspell": "^9.7.0",
"prettier": "^3.8.1",
"remeda": "catalog:",
"size-limit": "catalog:",
"taze": "^19.10.0",
"tsdown": "catalog:",
"turbo": "^2.8.20",
"typescript": "catalog:",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.1"
},
"packageManager": "pnpm@10.30.2",
"engines": {
"node": ">=20",
"pnpm": ">=10.18.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"namespace": "@kubb"
}