package.json 2.0 KB

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