chore: initialize project metadata

This commit is contained in:
2026-06-07 12:17:41 +02:00
commit 28c91a4b0e
2 changed files with 26 additions and 0 deletions

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "mapy-mg",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "node --watch dist/index.js",
"start": "node dist/index.js",
"check": "tsc -p tsconfig.json --noEmit"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.0.0"
}
}