package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "geniurl",
  3. "version": "1.2.0",
  4. "description": "Simple JSON and XML REST API to search for song metadata and the lyrics URL on genius.com",
  5. "main": "src/index.ts",
  6. "scripts": {
  7. "start": "tsc && node --enable-source-maps out/src/index.js",
  8. "watch": "nodemon -e \"ts,d.ts\" -x \"npm 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. "rest-proxy",
  18. "lyrics-search"
  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. "npm": ">=8"
  33. },
  34. "dependencies": {
  35. "axios": "^1.2.1",
  36. "compression": "^1.7.4",
  37. "cors": "^2.8.5",
  38. "express": "^4.17.3",
  39. "fuse.js": "^6.6.2",
  40. "helmet": "^6.0.1",
  41. "js2xmlparser": "^5.0.0",
  42. "kleur": "^4.1.4",
  43. "nanoid": "^3.3.4",
  44. "rate-limiter-flexible": "^2.3.6",
  45. "svcorelib": "^1.15.0",
  46. "tcp-port-used": "^1.0.2"
  47. },
  48. "devDependencies": {
  49. "@types/compression": "^1.7.2",
  50. "@types/cors": "^2.8.12",
  51. "@types/express": "^4.17.14",
  52. "@types/node": "^18.11.3",
  53. "@types/tcp-port-used": "^1.0.1",
  54. "dotenv": "^16.0.0",
  55. "eslint": "^8.9.0",
  56. "nodemon": "^2.0.20",
  57. "tslib": "^2.4.0"
  58. }
  59. }