Initial commit: WebGPU portfolio — generative-art site with DOM overlay

This commit is contained in:
2026-07-26 19:06:17 +02:00
commit 7172894ebb
30 changed files with 3916 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "webgpu-portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/opentype.js": "^1.3.10",
"@webgpu/types": "^0.1.40",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"dependencies": {
"@playwright/test": "^1.61.1",
"opentype.js": "^2.0.0"
}
}