23 lines
479 B
JSON
23 lines
479 B
JSON
{
|
|
"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"
|
|
}
|