first commit

This commit is contained in:
2026-04-11 16:59:16 +02:00
commit db373625f5
646 changed files with 576140 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "pokedex",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"start": "node dist/main.js",
"dev": "npx tsc && node dist/main.js",
"test": "vitest --run"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/node": "^25.5.2",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"type": "module"
}