package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "geniurl",
  3. "version": "2.0.0",
  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. "www-dev": "cd www && pnpm run dev",
  10. "www-build": "cd www && pnpm run build"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/Sv443/geniURL.git"
  15. },
  16. "keywords": [
  17. "rest-api",
  18. "lyrics",
  19. "lyrics-search",
  20. "song-metadata"
  21. ],
  22. "author": {
  23. "name": "Sv443",
  24. "url": "https://github.com/Sv443",
  25. "email": "[email protected]"
  26. },
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/Sv443/geniURL/issues"
  30. },
  31. "homepage": "https://github.com/Sv443/geniURL",
  32. "engines": {
  33. "node": ">=16",
  34. "pnpm": ">=9"
  35. },
  36. "dependencies": {
  37. "axios": "^1.7.7",
  38. "compression": "^1.7.5",
  39. "cors": "^2.8.5",
  40. "express": "^4.21.1",
  41. "helmet": "^7.2.0",
  42. "js2xmlparser": "^5.0.0",
  43. "kleur": "^4.1.5",
  44. "nanoid": "^3.3.7",
  45. "rate-limiter-flexible": "^2.4.2",
  46. "request-ip": "^3.3.0",
  47. "svcorelib": "^1.18.2",
  48. "tcp-port-used": "^1.0.2"
  49. },
  50. "devDependencies": {
  51. "@types/compression": "^1.7.5",
  52. "@types/cors": "^2.8.17",
  53. "@types/express": "^4.17.21",
  54. "@types/node": "^20.17.6",
  55. "@types/request-ip": "^0.0.41",
  56. "@types/tcp-port-used": "^1.0.4",
  57. "@typescript-eslint/eslint-plugin": "^6.21.0",
  58. "@typescript-eslint/parser": "^6.21.0",
  59. "@vuepress/plugin-seo": "2.0.0-rc.3",
  60. "@vuepress/plugin-sitemap": "2.0.0-rc.3",
  61. "dotenv": "^16.4.5",
  62. "eslint": "^8.57.1",
  63. "jest": "^29.7.0",
  64. "nodemon": "^3.1.7",
  65. "percentile": "^1.6.0",
  66. "pnpm": "^9.13.2",
  67. "ts-node": "^10.9.2",
  68. "tslib": "^2.8.1"
  69. }
  70. }