package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "geniurl",
  3. "version": "1.3.3",
  4. "description": "Simple JSON and XML REST API to search for song metadata, the lyrics URL and lyrics translations on genius.com",
  5. "main": "src/index.ts",
  6. "scripts": {
  7. "start": "tsc && node --enable-source-maps out/src/index.js",
  8. "dev": "nodemon -e \"ts,d.ts\" -x \"pnpm start\""
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/Sv443/geniURL.git"
  13. },
  14. "keywords": [
  15. "rest-api",
  16. "lyrics",
  17. "lyrics-search",
  18. "song-metadata"
  19. ],
  20. "author": {
  21. "name": "Sv443",
  22. "url": "https://github.com/Sv443",
  23. "email": "[email protected]"
  24. },
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/Sv443/geniURL/issues"
  28. },
  29. "homepage": "https://github.com/Sv443/geniURL",
  30. "engines": {
  31. "node": ">=16",
  32. "pnpm": ">=9"
  33. },
  34. "dependencies": {
  35. "axios": "^1.7.7",
  36. "compression": "^1.7.5",
  37. "cors": "^2.8.5",
  38. "express": "^4.21.1",
  39. "helmet": "^7.2.0",
  40. "js2xmlparser": "^5.0.0",
  41. "kleur": "^4.1.5",
  42. "nanoid": "^3.3.7",
  43. "rate-limiter-flexible": "^2.4.2",
  44. "request-ip": "^3.3.0",
  45. "svcorelib": "^1.18.2",
  46. "tcp-port-used": "^1.0.2"
  47. },
  48. "devDependencies": {
  49. "@types/compression": "^1.7.5",
  50. "@types/cors": "^2.8.17",
  51. "@types/express": "^4.17.21",
  52. "@types/node": "^20.17.6",
  53. "@types/request-ip": "^0.0.41",
  54. "@types/tcp-port-used": "^1.0.4",
  55. "@typescript-eslint/eslint-plugin": "^6.21.0",
  56. "@typescript-eslint/parser": "^6.21.0",
  57. "dotenv": "^16.4.5",
  58. "eslint": "^8.57.1",
  59. "jest": "^29.7.0",
  60. "nodemon": "^3.1.7",
  61. "percentile": "^1.6.0",
  62. "pnpm": "^9.13.2",
  63. "ts-node": "^10.9.2",
  64. "tslib": "^2.8.1"
  65. }
  66. }