package.json 627 B

123456789101112131415161718192021222324
  1. {
  2. "name": "herda",
  3. "private": true,
  4. "version": "0.0.0",
  5. "description": "Keep on top of it all with Herda",
  6. "scripts": {
  7. "build": "tsc",
  8. "dev": "ts-node src/index.ts",
  9. "lint": "eslint --ext .ts src",
  10. "start": "node out/index.js",
  11. "test": "echo \"Error: no test specified\" && exit 1"
  12. },
  13. "keywords": [],
  14. "author": "",
  15. "license": "SEE LICENSE IN LICENSE.md",
  16. "devDependencies": {
  17. "@types/node": "^20.10.3",
  18. "@typescript-eslint/eslint-plugin": "^6.13.2",
  19. "@typescript-eslint/parser": "^6.13.2",
  20. "eslint": "^8.55.0",
  21. "ts-node": "^10.9.1",
  22. "typescript": "^5.3.2"
  23. }
  24. }