happy bday!

This commit is contained in:
Joey Eamigh
2024-05-26 22:45:45 -04:00
commit be3a13eee1
34 changed files with 233005 additions and 0 deletions

32
package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "kirsten20",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"shell"
],
"scripts": {
"dev": "vite",
"build": "bun run build-wasm && tsc && vite build",
"build-wasm": "cd shell && bun run build",
"dev-wasm": "cd shell && bun run dev",
"preview": "vite preview",
"deploy": "bun run build && docker buildx build --platform linux/amd64 -t registry.24hgr.love/kirsten20:latest . && docker push registry.24hgr.love/kirsten20:latest"
},
"dependencies": {
"@xterm/addon-canvas": "^0.7.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-unicode11": "^0.8.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"shell": "*"
},
"devDependencies": {
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-wasm": "^3.3.0",
"vite-plugin-watch": "^0.3.1"
}
}