-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.95 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
{
"type": "module",
"private": true,
"packageManager": "pnpm@10.32.1",
"scripts": {
"dev": "vite",
"build": "pnpm cleanup && rolldown -c rolldown.config.ts",
"build:app": "vite build",
"preview": "vite preview --open",
"lint:fix": "eslint --fix . && pnpm -C app lint:fix",
"cleanup": "tsx scripts/cleanup.ts",
"test": "pnpm test:all",
"test:app": "vitest --config vitest.app.config.ts --run",
"test:ai:acceptance": "vitest --config vitest.app.config.ts --run app/src/ai/control/acceptance.e2e.spec.ts",
"test:packages": "vitest --config vitest.packages.config.ts --run",
"test:app:coverage": "vitest --config vitest.app.config.ts --run --coverage",
"test:packages:coverage": "vitest --config vitest.packages.config.ts --run --coverage",
"test:coverage": "pnpm test:app:coverage && pnpm test:packages:coverage",
"test:all": "pnpm test:app && pnpm test:packages",
"cz": "cz",
"prepare": "husky",
"commitlint": "commitlint --edit",
"typecheck:tests": "vitest --config vitest.packages.config.ts --typecheck --run",
"typecheck": "tsc --noEmit && pnpm typecheck:tests && corepack pnpm -C app typecheck"
},
"dependencies": {
"mediabunny": "catalog:",
"pixi.js": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"cz-git": "catalog:",
"eslint": "catalog:",
"eslint-plugin-format": "catalog:",
"fast-glob": "catalog:",
"husky": "catalog:",
"lint-staged": "catalog:",
"rolldown": "catalog:",
"tsx": "catalog:",
"type-aide": "catalog:",
"typescript": "catalog:",
"unplugin-agent-sync": "catalog:",
"unplugin-vue-components": "catalog:",
"vitest": "catalog:",
"yaml": "catalog:"
},
"lint-staged": {
"app/**/*": "cd app && eslint --fix",
"*": "eslint --fix"
}
}