-
Notifications
You must be signed in to change notification settings - Fork 5k
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.46 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.46 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
{
"name": "opencut",
"packageManager": "bun@1.2.18",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build:tools": "turbo run build --filter=@opencut/tools",
"build:wasm": "wasm-pack build rust/wasm --target bundler --out-dir pkg",
"build:web": "turbo run build --filter=@opencut/web",
"deploy:web": "turbo run deploy --filter=@opencut/web",
"dev:tools": "turbo run dev --filter=@opencut/tools",
"dev:wasm": "cargo watch -w rust/crates -w rust/wasm/src -s 'wasm-pack build rust/wasm --target bundler --out-dir pkg'",
"dev:web": "turbo run dev --filter=@opencut/web",
"format:web": "biome format apps/web/src/services/renderer --write --max-diagnostics=1000",
"generate:fonts": "npx tsx apps/web/scripts/generate-font-sprites.ts",
"lint:web": "biome lint apps/web/src --max-diagnostics=1000",
"lint:web:fix": "biome lint apps/web/src --write --unsafe --max-diagnostics=1000",
"preview:web": "turbo run preview --filter=@opencut/web",
"publish:wasm": "bun run build:wasm && npm publish rust/wasm/pkg --access public",
"start:tools": "turbo run start --filter=@opencut/tools",
"test": "bun test"
},
"dependencies": {
"@biomejs/biome": "^2.4.8",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"better-auth": "^1.4.15",
"next": "^16.1.3"
},
"devDependencies": {
"turbo": "^2.8.20",
"typescript": "^6.0.2"
},
"trustedDependencies": [
"@tailwindcss/oxide"
]
}