Files
health/node-health/package.json
2025-12-24 18:12:28 -08:00

26 lines
580 B
JSON

{
"name": "@health/node",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint --ext .ts,.js src",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"test": "echo \"No tests configured\" && exit 0",
"check": "npm run lint && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.3",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1"
}
}