20 lines
385 B
JSON
20 lines
385 B
JSON
{
|
|
"name": "mapix",
|
|
"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"
|
|
}
|
|
}
|