package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "author": "Godzil",
  3. "description": "Crunchy is a fork of Crunchyroll.js, capable of downloading anime episodes from the popular CrunchyRoll streaming service.",
  4. "license": "MIT",
  5. "keywords": [
  6. "anime",
  7. "download",
  8. "crunchyroll"
  9. ],
  10. "name": "crunchy",
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/Godzil/crunchyroll.js.git"
  14. },
  15. "engines": {
  16. "node": ">=5.0"
  17. },
  18. "version": "1.6.1",
  19. "bin": {
  20. "crunchy": "./bin/crunchy",
  21. "crunchy.sh": "./bin/crunchy.sh"
  22. },
  23. "dependencies": {
  24. "big-integer": ">=1.6.51",
  25. "bluebird": ">=3.7.2",
  26. "brotli": ">=1.3.3",
  27. "cloudscraper": ">=4.6.0",
  28. "commander": ">=11.0.0",
  29. "fs-extra": ">=11.1.1",
  30. "mkdirp": ">=3.0.1",
  31. "pjson": ">=1.0.9",
  32. "request": ">=2.88.2",
  33. "request-promise": ">=4.2.6",
  34. "tough-cookie-file-store": ">=2.0.3",
  35. "uuid": ">=9.0.0",
  36. "xml2js": ">=0.6.0"
  37. },
  38. "devDependencies": {
  39. "@types/bluebird": ">=3.5.38",
  40. "@types/cheerio": ">=0.22.31",
  41. "@types/fs-extra": ">=11.0.1",
  42. "@types/mkdirp": ">=2.0.0",
  43. "@types/node": ">=20.3.2",
  44. "@types/request": ">=2.48.8",
  45. "@types/request-promise": ">=4.1.48",
  46. "@types/uuid": ">=9.0.2",
  47. "@types/xml2js": ">=0.4.11",
  48. "cheerio": "^1.0.0-rc.12",
  49. "npm-check": "^6.0.1",
  50. "tslint": "^6.1.3",
  51. "typescript": ">=5.1.3"
  52. },
  53. "scripts": {
  54. "prepublishOnly": "npm run build",
  55. "compile": "tsc",
  56. "build": "tsc",
  57. "test": "tslint --project .",
  58. "start": "node ./bin/crunchy"
  59. },
  60. "bugs": {
  61. "url": "https://github.com/Godzil/Crunchy/issues"
  62. }
  63. }