forked from compozy/compozy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.65 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.65 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
{
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.46.0",
"oxlint": "^1.60.0",
"turbo": "^2.8.20",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.0"
},
"lint-staged": {
"*.go": "make fmt",
"*.{css,html,json,jsonc,yaml,yml,md}": [
"oxfmt --no-error-on-unmatched-pattern"
],
"*.{js,jsx,ts,tsx}": [
"oxfmt --no-error-on-unmatched-pattern",
"oxlint --no-error-on-unmatched-pattern"
]
},
"name": "compozy",
"packageManager": "bun@1.3.11",
"private": true,
"scripts": {
"build": "turbo run build",
"codegen": "node scripts/codegen.mjs",
"codegen-check": "node scripts/codegen.mjs --check",
"dev:web": "bun run --cwd web dev",
"format": "bunx oxfmt",
"format:check": "bunx oxfmt --check",
"frontend:bootstrap": "bun ci",
"frontend:build": "bun run build",
"frontend:e2e": "bun run --cwd web test:e2e",
"frontend:lint": "bun run lint",
"frontend:test": "bun run test:config \u0026\u0026 bun run --cwd packages/ui test \u0026\u0026 bun run --cwd web test",
"frontend:typecheck": "bun run typecheck",
"lint": "bun run format \u0026\u0026 bunx oxlint",
"postinstall": "bash scripts/link-skills.sh",
"prepare": "husky",
"test": "bun run test:config",
"test:config": "bunx vitest run --config vitest.config.ts test/*.test.ts",
"typecheck": "turbo run typecheck"
},
"version": "0.2.7",
"workspaces": [
"packages/ui",
"web",
"sdk/*"
]
}