location/package.json

26 lines
661 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"
},
"devDependencies": {
"@types/node": "^18.11.9",
"prettier": "^2.7.1",
"typescript": "^4.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/kremalicious/location"
},
"engines": {
"node": "16"
}
}