package.json 915 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "xrates-updater",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "src/index.ts",
  6. "scripts": {
  7. "build": "tsc",
  8. "prettier": "prettier --write .",
  9. "lint": "prettier --check . && eslint . --ext .ts && cspell '**/*' ",
  10. "prebuild": "npm run clean",
  11. "clean": "rm -rf ./build"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git@ssh.git.ac:kotoyuuko/xrates-updater.git"
  16. },
  17. "author": "kotoyuuko",
  18. "license": "WTFPL",
  19. "dependencies": {
  20. "@notionhq/client": "^3.1.3",
  21. "axios": "^1.9.0",
  22. "dotenv": "^16.5.0"
  23. },
  24. "devDependencies": {
  25. "@eslint/eslintrc": "^3.3.1",
  26. "@eslint/js": "^9.27.0",
  27. "@types/node": "^22.15.24",
  28. "@typescript-eslint/eslint-plugin": "^8.33.0",
  29. "@typescript-eslint/parser": "^8.33.0",
  30. "eslint": "^9.27.0",
  31. "globals": "^16.2.0",
  32. "prettier": "^3.5.3",
  33. "ts-node": "^10.9.2",
  34. "typescript": "^5.8.3"
  35. }
  36. }