-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.83 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.83 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
{
"name": "ra2web-studio",
"description": "RA2WEB Studio - 专业的在线兼容红警2 MIX文件编辑器,提供MIX文件解析、文件提取、数据预览、红警2游戏资源管理等功能。支持在线编辑红警2的mix文件,无需下载软件。",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "npm run test:unit",
"test:unit": "vitest run --coverage",
"test:unit:watch": "vitest",
"test:e2e": "playwright test --grep-invert @smoke-import",
"test:e2e:ui": "playwright test --ui --grep-invert @smoke-import",
"test:e2e:smoke-import": "playwright test --grep @smoke-import",
"test:ci": "npm run build && npm run test:unit && npm run test:e2e"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.15",
"@monaco-editor/react": "4.7.0",
"@ra2web/wavefile": "^1.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@types/three": "^0.176.0",
"7z-wasm": "^1.2.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"gifenc": "^1.0.3",
"jszip": "^3.10.1",
"lucide-react": "^1.8.0",
"monaco-editor": "0.53.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^2.2.0",
"three": "^0.177.0"
},
"devDependencies": {
"@playwright/test": "^1.53.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/node": "^24.0.0",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.16",
"jsdom": "^25.0.1",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"typescript": "^5.6.3",
"vite": "^6.4.2",
"vitest": "^3.2.4"
}
}