location/package.json

30 lines
797 B
JSON

{
"name": "@kremalicious/location",
"description": "Microservice API endpoint to fetch and expose my location.",
"version": "0.1.0",
"license": "MIT",
"homepage": "https://matthiaskretschmann.com",
"scripts": {
"start": "vercel dev",
"test": "npm run type-check",
"format": "prettier --ignore-path .gitignore './**/*.{css,yml,js,ts,tsx,json}' --write",
"type-check": "tsc --noEmit",
"get-checkins": "node ./scripts/get-checkins.mjs"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@vercel/node": "^3.0.26",
"dotenv": "^16.4.1",
"eslint": "^9.0.0",
"prettier": "^3.2.5",
"typescript": "^5.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/kremalicious/location"
},
"engines": {
"node": "18"
}
}