-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.42 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
{
"name": "solid-imager-monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/client",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "bun --filter @solid-imager/server dev",
"build": "bun --filter '*' build",
"start": "bun --filter @solid-imager/server start",
"lint": "biome lint .",
"check": "biome check . && bun run typecheck && bun run design:lint",
"design:lint": "designmd lint DESIGN.md",
"format": "biome format --write .",
"test": "bun run --cwd apps/server test:unit && bun run --cwd apps/server test:integration && bun run --cwd apps/cli test && bun run --cwd apps/xtracter test && bun run --cwd packages/core test && bun run --cwd packages/ui test",
"typecheck": "bun --filter '*' typecheck",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@google/design.md": "^0.4.0",
"@tanstack/cli": "^0.69.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"nitro": "npm:nitro-nightly@3.0.1-20260601-173724-a2597363",
"typescript": "^7.0.0",
"vitest": "^4.1.10"
},
"overrides": {
"nitro": "npm:nitro-nightly@3.0.1-20260601-173724-a2597363"
},
"packageManager": "bun@1.3.14",
"trustedDependencies": [
"youtube-dl-exec",
"ffmpeg-static",
"dghs-imgutils-rs",
"sharp"
],
"lint-staged": {
"{apps,packages}/**/src/**/*.{js,jsx,json,jsonc,ts,tsx}": "biome check --write --unsafe"
}
}