chore: init clean tree

This commit is contained in:
2025-12-17 23:19:04 +02:00
commit 01d96d3200
45 changed files with 4152 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "device_contact",
"module": "src/index.ts",
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"start": "bun run src/index.ts",
"dev": "SDL_VIDEODRIVER=wayland NODE_ENV=development bun run --watch src/ui/app.ts"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@kmamal/sdl": "^0.11.13",
"@napi-rs/canvas": "^0.1.84"
}
}