- Add client-side router with History API pushState (router.ts, pages.ts) - Extend overlay with projects grid/category/detail views and resume section - Add Gitea CI/CD workflow and webhook deployment server - Improve Docker Compose with nginx reverse proxy config - Add deployment script and .env.example
24 lines
502 B
JSON
24 lines
502 B
JSON
{
|
|
"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",
|
|
"test": "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"
|
|
}
|
|
}
|