-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.58 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "synthesis-fission",
"private": false,
"version": "7.1.0",
"type": "module",
"main": ".vite/build/main.cjs",
"author": "Autodesk",
"description": "Synthesis",
"scripts": {
"init": "(bun run assetpack && bun run playwright:install) || (npm run assetpack && npm run playwright:install)",
"host": "vite --open --host",
"dev": "vite --open",
"test": "vitest",
"build": "tsc && vite build",
"build:prod": "tsc && vite build --base=/fission/ --outDir dist/prod",
"build:dev": "tsc && vite build --base=/fission-closed/ --outDir dist/dev",
"preview": "vite preview --base=/fission/",
"lint": "bunx biome lint",
"lint:fix": "bunx biome lint --write",
"fmt": "bunx biome format src",
"fmt:fix": "bunx biome format src --write",
"style": "bunx biome check src",
"style:fix": "bunx biome check src --write",
"assetpack": "git lfs pull && (rm -rf public/Downloadables;tar -xf public/assetpack.zip -C public/)",
"assetpack:update": "bun update_manifest.ts && cd public && zip -FS -r assetpack.zip Downloadables",
"playwright:install": "bun x playwright install",
"electron:make": "electron-forge make",
"electron:start": "electron-forge start",
"electron:package": "electron-forge package",
"electron:publish": "electron-forge publish"
},
"dependencies": {
"@azaleacolburn/jolt-physics": "^0.31.2",
"@biomejs/biome": "^2.2.0",
"@haensl/google-analytics": "^1.2.2",
"@mui/base": "^5.0.0-beta.70",
"@mui/icons-material": "^5.18.0",
"@mui/system": "^5.18.0",
"@mui/material": "^5.18.0",
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.18.0",
"@vitest/browser": "^3.2.4",
"@xyflow/react": "^12.8.3",
"async-mutex": "^0.5.0",
"electron-squirrel-startup": "^1.0.1",
"framer-motion": "^12.23.12",
"fuse.js": "^7.1.0",
"lygia": "^1.3.3",
"peerjs": "^1.5.5",
"msw": "^2.10.5",
"notistack": "^3.0.2",
"playwright": "^1.54.2",
"postprocessing": "^6.37.7",
"react": "^18.3.1",
"react-colorful": "^5.6.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.5.0",
"react-icons": "^4.12.0",
"three": "^0.179.1",
"uuid": "^11.1.0",
"vitest-browser-react": "^1.0.1"
},
"devDependencies": {
"@electron-forge/cli": "^7.8.3",
"@electron-forge/maker-deb": "^7.8.3",
"@electron-forge/maker-rpm": "^7.8.3",
"@electron-forge/maker-squirrel": "^7.8.3",
"@electron-forge/maker-zip": "^7.8.3",
"@electron-forge/plugin-auto-unpack-natives": "^7.8.3",
"@electron-forge/plugin-fuses": "^7.8.3",
"@electron-forge/plugin-vite": "^7.8.3",
"@electron/fuses": "^1.8.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@tailwindcss/postcss": "^4.1.12",
"@testing-library/react": "^16.3.0",
"@types/node": "^20.19.11",
"@types/pako": "^2.0.4",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/three": "^0.179.0",
"@vitejs/plugin-basic-ssl": "^2.1.0",
"@vitejs/plugin-react": "^5.0.0",
"@vitejs/plugin-react-swc": "^4.0.0",
"cssnano": "^7.1.0",
"electron": "^37.3.0",
"pako": "^2.1.0",
"peer": "^1.0.2",
"postcss": "^8.5.6",
"protobufjs": "^7.5.3",
"protobufjs-cli": "^1.1.3",
"rollup": "^4.46.2",
"tailwindcss": "^4.1.12",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.2",
"vite": "^7.1.2",
"vite-plugin-glsl": "^1.5.1",
"vitest": "^3.2.4"
},
"license": "Apache-2.0",
"repository": {
"url": "https://github.com/Autodesk/synthesis.git"
},
"engines": {
"node": ">=20.19.11"
}
}