-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.78 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.78 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
56
57
58
59
60
61
62
{
"name": "frame-script",
"private": true,
"version": "0.0.9",
"type": "module",
"scripts": {
"dev:vite": "vite --config vite.studio.config.ts",
"build:vite": "vite build --config vite.studio.config.ts",
"dev:render": "vite --config vite.render.config.ts",
"build:render": "vite build --config vite.render.config.ts",
"preview": "vite preview --config vite.studio.config.ts",
"build:electron": "tsc -p tsconfig.electron.json",
"dev": "concurrently -k \"npm:dev:vite\" \"npm:dev:render\" \"npm:dev:electron\"",
"predev:electron": "tsc -p tsconfig.electron.json",
"dev:electron": "wait-on http://localhost:5173 && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron ./dist-electron/main.js",
"build": "npm run build:vite && npm run build:electron",
"build:all": "npm run build && npm run build:render",
"build:binaries": "node ./scripts/build-binaries.mjs",
"predev:electron:bin": "tsc -p tsconfig.electron.json",
"dev:electron:bin": "wait-on http://localhost:5173 http://localhost:5174/render && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 RENDER_DEV_SERVER_URL=http://localhost:5174/render FRAMESCRIPT_RUN_MODE=bin electron ./dist-electron/main.js",
"dev:bin": "concurrently -k \"npm:dev:vite\" \"npm:dev:render\" \"npm:dev:electron:bin\"",
"start": "npm run dev:bin",
"start:bin": "npm run build:all && npm run build:binaries && node ./scripts/start-bin.mjs",
"start:bin:skip-build": "node ./scripts/start-bin.mjs",
"docs:start": "npm --prefix docs run start",
"docs:build": "npm --prefix docs run build",
"docs:serve": "npm --prefix docs run serve"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.1.2",
"@types/opentype.js": "^1.3.4",
"mathjax-full": "^3.2.1",
"opentype.js": "^1.3.4",
"prismjs": "^1.30.0",
"puppeteer": "^24.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^6.28.0",
"three": "^0.166.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.166.0",
"@vitejs/plugin-react": "^5.1.1",
"@webgpu/types": "^0.1.67",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.2.5",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"wait-on": "^9.0.3"
}
}