-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 942 Bytes
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
{
"name": "wazplay",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "Browser-based video editor powered by Rust/WebAssembly media modules.",
"license": "MIT",
"scripts": {
"wasm": "node scripts/build-wasm.mjs",
"wasm:ensure": "node scripts/build-wasm.mjs --if-missing",
"predev": "npm run wasm:ensure",
"dev": "vite",
"prebuild": "npm run wasm:ensure",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"mp4-muxer": "^5.2.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"webm-muxer": "^5.1.4",
"zustand": "^5.0.3"
},
"devDependencies": {
"@types/dom-webcodecs": "^0.1.11",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.7.3",
"vite": "^6.0.7"
}
}