forked from likec4/likec4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.71 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.71 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "root",
"private": true,
"license": "MIT",
"version": "1.48.0",
"packageManager": "pnpm@10.28.1",
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"styled-system/*"
],
"engines": {
"node": ">=22.21.1"
},
"scripts": {
"prepare": "node .husky/install.mjs",
"fmt": "dprint fmt",
"changeset:empty": "changeset --empty",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix-suggestions",
"build": "turbo run build --filter=\"!@likec4/docs-astro\" --filter=\"!@likec4/playground\"",
"build:all": "turbo run build",
"typecheck": "turbo run typecheck --filter=\"!@likec4/docs-astro\"",
"typecheck:all": "turbo run typecheck",
"lint:package": "turbo run lint:package --filter=\"!./apps/*\"",
"generate": "turbo run generate --filter=\"!@likec4/docs-astro\"",
"generate:all": "turbo run generate",
"ci:typecheck": "turbo run typecheck --filter=\"!@likec4/docs-astro\"",
"ci:build": "turbo run build --filter=\"!@likec4/docs-astro\" --filter=\"!@likec4/playground\"",
"ci:test": "vitest run --no-isolate",
"ci:lint": "oxlint --type-aware --format=github --quiet",
"ci:publish": "pnpm publish -r --no-git-checks",
"vscode:typecheck": "pnpm run typecheck",
"release": "shipjs prepare",
"clean": "pnpm -r run clean && rimraf -v -g \"**/.turbo\" \"**/node_modules/.cache\" \"**/node_modules/.vite\"",
"clean:lib": "rimraf -v -g \"packages/*/lib\" \"styled-system/*/lib\" \"**/.tsbuildinfo\"",
"git:pre-commit": "nano-staged",
"test": "vitest run --no-isolate",
"test:watch": "vitest --no-isolate",
"pretest:e2e": "NODE_ENV=production pnpm turbo run pack --filter=\"likec4...\"",
"test:e2e": "cd e2e && pnpm install --no-lockfile && pnpm install:chromium && pnpm bootstrap && pnpm test",
"test:e2e:typecheck": "pnpm run pretest:e2e && cd e2e && pnpm install --no-lockfile && pnpm bootstrap && pnpm typecheck",
"vitest:ui": "vitest --ui --no-isolate"
},
"devDependencies": {
"@changesets/changelog-github": "catalog:",
"@changesets/cli": "catalog:",
"@likec4/devops": "workspace:*",
"@vitest/ui": "catalog:vitest",
"dprint": "^0.50.2",
"execa": "^9.6.0",
"global": "^4.4.0",
"husky": "^9.1.7",
"nano-staged": "^0.9.0",
"npm-run-all2": "^8.0.4",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"rimraf": "^6.0.1",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:vitest"
},
"pnpm": {
"overrides": {
"esbuild": "catalog:esbuild",
"react": "catalog:react",
"react-dom": "catalog:react",
"@types/react": "catalog:react",
"@types/react-dom": "catalog:react",
"vscode-jsonrpc": "catalog:vscode",
"vscode-languageclient": "catalog:vscode",
"vscode-languageserver": "catalog:vscode",
"vscode-languageserver-protocol": "catalog:vscode",
"vscode-languageserver-textdocument": "catalog:vscode",
"vscode-languageserver-types": "catalog:vscode",
"vscode-oniguruma": "catalog:vscode",
"vscode-uri": "catalog:vscode",
"type-fest": "catalog:externals",
"turbo": "catalog:",
"sharp": "catalog:utils",
"caniuse-lite": "catalog:utils",
"mnemonist": "0.40.3"
},
"patchedDependencies": {
"mnemonist@0.40.3": "patches/mnemonist@0.40.3.patch",
"xstate@5.24.0": "patches/xstate@5.24.0.patch",
"chroma-js@3.2.0": "patches/chroma-js@3.2.0.patch"
},
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"sharp",
"workerd",
"oxlint",
"wrangler",
"dprint",
"esbuild"
]
},
"nano-staged": {
"**/*.{ts,tsx,mjs,js,jsx}": [
"dprint fmt"
]
}
}