Rewrite with modern stack

This commit is contained in:
martin 2025-08-22 19:28:05 +02:00
commit 1f1f20ffd6
69 changed files with 17771 additions and 1589 deletions

20
shared/package.json Normal file
View file

@ -0,0 +1,20 @@
{
"name": "@gaplace/shared",
"version": "1.0.0",
"description": "Shared types and utilities for GaPlace",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx"
},
"devDependencies": {
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}