-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 806 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 806 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
{
"name": "shaderui-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev:lib & npm run dev:site",
"dev:site": "cd packages/site && npx vite",
"dev:lib": "cd packages/lib && npx vite build --watch",
"build": "npm run build --workspaces",
"build:lib": "npm run build --workspace=packages/lib",
"build:site": "npm run build --workspace=packages/site",
"preview": "npm run preview --workspace=packages/site"
},
"devDependencies": {
"typescript": "~5.9.3",
"unplugin-typegpu": "^0.9.0",
"vite": "^7.2.4"
},
"dependencies": {
"@typegpu/noise": "0.9.0",
"@typegpu/sdf": "0.9.0",
"typegpu": "0.9.0",
"webgpu": "^0.3.8",
"wgpu-matrix": "^3.4.0"
}
}