package.json 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. {
  2. "name": "peertube",
  3. "description": "PeerTube, an ActivityPub-federated video streaming platform using P2P directly in your web browser.",
  4. "version": "4.2.2",
  5. "private": true,
  6. "licence": "AGPL-3.0",
  7. "engines": {
  8. "node": ">=12.x",
  9. "yarn": ">=1.x"
  10. },
  11. "bin": {
  12. "peertube": "dist/server/tools/peertube.js"
  13. },
  14. "author": {
  15. "name": "Chocobozzz",
  16. "email": "chocobozzz@framasoft.org",
  17. "url": "http://github.com/Chocobozzz"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/Chocobozzz/PeerTube.git"
  22. },
  23. "typings": "*.d.ts",
  24. "scripts": {
  25. "e2e:browserstack": "bash ./scripts/e2e/browserstack.sh",
  26. "e2e:local": "bash ./scripts/e2e/local.sh",
  27. "setup:cli": "bash ./scripts/setup/cli.sh",
  28. "build": "bash ./scripts/build/index.sh",
  29. "build:embed": "bash ./scripts/build/embed.sh",
  30. "build:server": "bash ./scripts/build/server.sh",
  31. "build:client": "bash ./scripts/build/client.sh",
  32. "clean:client": "bash ./scripts/clean/client/index.sh",
  33. "clean:server:test": "bash ./scripts/clean/server/test.sh",
  34. "i18n:update": "bash ./scripts/i18n/update.sh",
  35. "plugin:install": "node ./dist/scripts/plugin/install.js",
  36. "plugin:uninstall": "node ./dist/scripts/plugin/uninstall.js",
  37. "i18n:create-custom-files": "node ./dist/scripts/i18n/create-custom-files.js",
  38. "reset-password": "node ./dist/scripts/reset-password.js",
  39. "dev": "bash ./scripts/dev/index.sh",
  40. "dev:server": "bash ./scripts/dev/server.sh",
  41. "dev:embed": "bash ./scripts/dev/embed.sh",
  42. "dev:client": "bash ./scripts/dev/client.sh",
  43. "dev:cli": "bash ./scripts/dev/cli.sh",
  44. "start": "node dist/server",
  45. "start:server": "node dist/server --no-client",
  46. "update-host": "node ./dist/scripts/update-host.js",
  47. "create-transcoding-job": "node ./dist/scripts/create-transcoding-job.js",
  48. "regenerate-thumbnails": "node ./dist/scripts/regenerate-thumbnails.js",
  49. "create-import-video-file-job": "node ./dist/scripts/create-import-video-file-job.js",
  50. "create-move-video-storage-job": "node ./dist/scripts/create-move-video-storage-job.js",
  51. "print-transcode-command": "node ./dist/scripts/print-transcode-command.js",
  52. "test": "bash ./scripts/test.sh",
  53. "help": "bash ./scripts/help.sh",
  54. "generate-cli-doc": "bash ./scripts/generate-cli-doc.sh",
  55. "generate-types-package": "ts-node ./packages/types/generate-package.ts",
  56. "parse-log": "node ./dist/scripts/parse-log.js",
  57. "prune-storage": "node ./dist/scripts/prune-storage.js",
  58. "postinstall": "test -n \"$NOCLIENT\" || (cd client && yarn install --pure-lockfile)",
  59. "tsc": "tsc",
  60. "commander": "commander",
  61. "lint": "npm run ci -- lint",
  62. "ng": "ng",
  63. "ts-node": "ts-node",
  64. "eslint": "eslint",
  65. "resolve-tspaths": "resolve-tspaths",
  66. "resolve-tspaths:all": "npm run resolve-tspaths:server && npm run resolve-tspaths:cli",
  67. "resolve-tspaths:server": "npm run resolve-tspaths -- --project tsconfig.json --src . --out dist",
  68. "resolve-tspaths:cli": "npm run resolve-tspaths -- --project ./server/tools/tsconfig.json --src ./server/tools --out ./dist/server/tools",
  69. "concurrently": "concurrently",
  70. "mocha": "mocha",
  71. "ci": "bash ./scripts/ci.sh",
  72. "release": "bash ./scripts/release.sh",
  73. "release-embed-api": "bash ./scripts/release-embed-api.sh",
  74. "nightly": "bash ./scripts/nightly.sh",
  75. "openapi-clients": "bash ./scripts/openapi-clients.sh",
  76. "client-report": "bash ./scripts/client-report.sh",
  77. "swagger-cli": "swagger-cli"
  78. },
  79. "resolutions": {
  80. "jpeg-js": "0.4.4"
  81. },
  82. "dependencies": {
  83. "@aws-sdk/client-s3": "^3.23.0",
  84. "@aws-sdk/lib-storage": "^3.72.0",
  85. "@aws-sdk/node-http-handler": "^3.82.0",
  86. "@babel/parser": "7.17.8",
  87. "@peertube/feed": "^5.0.1",
  88. "@peertube/http-signature": "^1.6.0",
  89. "@uploadx/core": "^5.1.2",
  90. "async": "^3.0.1",
  91. "async-lru": "^1.1.1",
  92. "bcrypt": "5.0.1",
  93. "bencode": "^2.0.2",
  94. "bittorrent-tracker": "^9.0.0",
  95. "bluebird": "^3.5.0",
  96. "bull": "^4.1.0",
  97. "bytes": "^3.0.0",
  98. "chokidar": "^3.4.2",
  99. "commander": "^9.0.0",
  100. "config": "^3.0.0",
  101. "cookie-parser": "^1.4.3",
  102. "cors": "^2.8.1",
  103. "create-torrent": "^5.0.0",
  104. "deep-object-diff": "^1.1.0",
  105. "email-templates": "^9.0.0",
  106. "execa": "^5.1.1",
  107. "express": "^4.18.1",
  108. "express-rate-limit": "^6.1.0",
  109. "express-validator": "^6.4.0",
  110. "flat": "^5.0.0",
  111. "fluent-ffmpeg": "^2.1.0",
  112. "fs-extra": "^10.0.0",
  113. "got": "^11.8.2",
  114. "helmet": "^5.0.1",
  115. "hpagent": "^0.1.2",
  116. "http-problem-details": "^0.1.5",
  117. "ip-anonymize": "^0.1.0",
  118. "ipaddr.js": "2.0.1",
  119. "is-cidr": "^4.0.0",
  120. "iso-639-3": "2.2.0",
  121. "jimp": "^0.16.0",
  122. "js-yaml": "^4.0.0",
  123. "jsonld": "~5.2.0",
  124. "lodash": "^4.17.10",
  125. "lru-cache": "7.8.1",
  126. "magnet-uri": "^6.1.0",
  127. "markdown-it": "^12.0.4",
  128. "markdown-it-emoji": "^2.0.0",
  129. "maxmind": "^4.3.6",
  130. "memoizee": "^0.4.14",
  131. "morgan": "^1.5.3",
  132. "multer": "^1.4.5-lts.1",
  133. "node-media-server": "^2.1.4",
  134. "nodemailer": "^6.0.0",
  135. "oauth2-server": "3.1.1",
  136. "parse-torrent": "^9.1.0",
  137. "password-generator": "^2.0.2",
  138. "pem": "^1.12.3",
  139. "pg": "^8.2.1",
  140. "prompt": "^1.0.0",
  141. "proxy-addr": "^2.0.7",
  142. "pug": "^3.0.0",
  143. "redis": "^4.0.1",
  144. "reflect-metadata": "^0.1.12",
  145. "sanitize-html": "2.x",
  146. "sequelize": "6.21.0",
  147. "sequelize-typescript": "^2.0.0-beta.1",
  148. "short-uuid": "^4.2.0",
  149. "sitemap": "^7.0.0",
  150. "socket.io": "^4.0.1",
  151. "sql-formatter": "^4.0.0-beta.0",
  152. "srt-to-vtt": "^1.1.2",
  153. "tsconfig-paths": "^3.9.0",
  154. "tslib": "^2.0.0",
  155. "useragent": "^2.3.0",
  156. "validator": "^13.0.0",
  157. "webfinger.js": "^2.6.6",
  158. "webtorrent": "^1.0.0",
  159. "winston": "3.7.2",
  160. "ws": "^8.0.0"
  161. },
  162. "devDependencies": {
  163. "@peertube/maildev": "^1.2.0",
  164. "@types/async": "^3.0.0",
  165. "@types/async-lock": "^1.1.0",
  166. "@types/bcrypt": "^5.0.0",
  167. "@types/bencode": "^2.0.0",
  168. "@types/bluebird": "^3.5.33",
  169. "@types/body-parser": "^1.16.3",
  170. "@types/bull": "^3.15.0",
  171. "@types/bytes": "^3.0.0",
  172. "@types/chai": "^4.0.4",
  173. "@types/chai-json-schema": "^1.4.3",
  174. "@types/chai-xml": "^0.3.1",
  175. "@types/config": "^0.0.41",
  176. "@types/create-torrent": "^5.0.0",
  177. "@types/express": "4.17.9",
  178. "@types/fluent-ffmpeg": "^2.1.16",
  179. "@types/fs-extra": "^9.0.1",
  180. "@types/lodash": "^4.14.64",
  181. "@types/lru-cache": "^7.5.0",
  182. "@types/magnet-uri": "^5.1.1",
  183. "@types/maildev": "^0.0.3",
  184. "@types/memoizee": "^0.4.2",
  185. "@types/mkdirp": "^1.0.0",
  186. "@types/mocha": "^9.0.0",
  187. "@types/morgan": "^1.7.32",
  188. "@types/multer": "^1.3.3",
  189. "@types/node": "^14.14.31",
  190. "@types/nodemailer": "^6.2.0",
  191. "@types/oauth2-server": "^3.0.8",
  192. "@types/pem": "^1.9.3",
  193. "@types/request": "^2.0.3",
  194. "@types/supertest": "^2.0.3",
  195. "@types/validator": "^13.0.0",
  196. "@types/webtorrent": "^0.109.0",
  197. "@types/ws": "^8.2.0",
  198. "@typescript-eslint/eslint-plugin": "^5.0.0",
  199. "autocannon": "^7.0.4",
  200. "chai": "^4.1.1",
  201. "chai-json-schema": "^1.5.0",
  202. "chai-xml": "^0.4.0",
  203. "concurrently": "^7.0.0",
  204. "depcheck": "^1.4.2",
  205. "eslint": "^8.0.0",
  206. "eslint-config-standard-with-typescript": "^21.0.1",
  207. "eslint-plugin-import": "^2.20.1",
  208. "eslint-plugin-node": "^11.0.0",
  209. "eslint-plugin-promise": "^6.0.0",
  210. "fast-xml-parser": "^4.0.0-beta.8",
  211. "mocha": "^9.0.0",
  212. "proxy": "^1.0.2",
  213. "resolve-tspaths": "^0.3.0",
  214. "socket.io-client": "^4.0.1",
  215. "supertest": "^6.0.1",
  216. "swagger-cli": "^4.0.2",
  217. "ts-node": "10.7.0",
  218. "tsc-watch": "^5.0.3",
  219. "typescript": "^4.0.5"
  220. },
  221. "bundlewatch": {
  222. "files": [
  223. {
  224. "path": "client/dist/en-US/*.js",
  225. "maxSize": "1mb"
  226. },
  227. {
  228. "path": "client/dist/standalone/videos/video-embed.bundle.js",
  229. "maxSize": "1mb"
  230. },
  231. {
  232. "path": "client/dist/standalone/videos/video-embed.css",
  233. "maxSize": "1mb"
  234. }
  235. ]
  236. }
  237. }