Files
PeerTube/package.json
T

235 lines
7.9 KiB
JSON
Raw Normal View History

2015-06-09 17:41:40 +02:00
{
"name": "peertube",
2021-01-14 09:43:06 +01:00
"description": "PeerTube, an ActivityPub-federated video streaming platform using P2P directly in your web browser.",
2022-03-08 10:41:59 +01:00
"version": "4.1.1",
2015-06-09 17:41:40 +02:00
"private": true,
2019-12-17 15:19:42 +01:00
"licence": "AGPL-3.0",
2015-06-09 17:41:40 +02:00
"engines": {
2021-05-10 09:41:21 +02:00
"node": ">=12.x",
2021-05-10 09:55:01 +02:00
"yarn": ">=1.x"
},
2018-09-13 14:27:44 +02:00
"bin": {
"peertube": "dist/server/tools/peertube.js"
},
"author": {
2018-10-03 16:43:57 +02:00
"name": "Chocobozzz",
2020-11-12 11:12:41 +01:00
"email": "chocobozzz@framasoft.org",
"url": "http://github.com/Chocobozzz"
},
"repository": {
"type": "git",
2018-08-16 10:57:57 +02:00
"url": "git+https://github.com/Chocobozzz/PeerTube.git"
2015-06-09 17:41:40 +02:00
},
2018-08-02 15:34:09 +02:00
"typings": "*.d.ts",
2015-06-09 17:41:40 +02:00
"scripts": {
2021-09-02 08:57:59 +02:00
"e2e:browserstack": "bash ./scripts/e2e/browserstack.sh",
2021-05-05 10:56:40 +02:00
"e2e:local": "bash ./scripts/e2e/local.sh",
"setup:cli": "bash ./scripts/setup/cli.sh",
"build": "bash ./scripts/build/index.sh",
"build:embed": "bash ./scripts/build/embed.sh",
"build:server": "bash ./scripts/build/server.sh",
"build:client": "bash ./scripts/build/client.sh",
"clean:client": "bash ./scripts/clean/client/index.sh",
"clean:server:test": "bash ./scripts/clean/server/test.sh",
"i18n:update": "bash ./scripts/i18n/update.sh",
2019-07-12 11:39:58 +02:00
"plugin:install": "node ./dist/scripts/plugin/install.js",
"plugin:uninstall": "node ./dist/scripts/plugin/uninstall.js",
2018-06-06 14:23:40 +02:00
"i18n:create-custom-files": "node ./dist/scripts/i18n/create-custom-files.js",
2018-01-26 09:50:43 +01:00
"reset-password": "node ./dist/scripts/reset-password.js",
2021-05-05 10:56:40 +02:00
"dev": "bash ./scripts/dev/index.sh",
"dev:server": "bash ./scripts/dev/server.sh",
"dev:embed": "bash ./scripts/dev/embed.sh",
"dev:client": "bash ./scripts/dev/client.sh",
"dev:cli": "bash ./scripts/dev/cli.sh",
2017-06-10 22:57:31 +02:00
"start": "node dist/server",
2018-11-14 15:27:47 +01:00
"start:server": "node dist/server --no-client",
2018-01-26 09:50:43 +01:00
"update-host": "node ./dist/scripts/update-host.js",
2018-05-30 10:49:40 +02:00
"create-transcoding-job": "node ./dist/scripts/create-transcoding-job.js",
2021-03-12 17:04:49 +01:00
"regenerate-thumbnails": "node ./dist/scripts/regenerate-thumbnails.js",
2018-06-02 21:39:41 +02:00
"create-import-video-file-job": "node ./dist/scripts/create-import-video-file-job.js",
"create-move-video-storage-job": "node ./dist/scripts/create-move-video-storage-job.js",
"print-transcode-command": "node ./dist/scripts/print-transcode-command.js",
2021-05-05 10:56:40 +02:00
"test": "bash ./scripts/test.sh",
"help": "bash ./scripts/help.sh",
"generate-cli-doc": "bash ./scripts/generate-cli-doc.sh",
2021-12-28 10:18:15 +01:00
"generate-types-package": "ts-node ./packages/types/generate-package.ts",
2018-01-26 09:50:43 +01:00
"parse-log": "node ./dist/scripts/parse-log.js",
2018-05-29 11:11:52 +02:00
"prune-storage": "node ./dist/scripts/prune-storage.js",
"postinstall": "test -n \"$NOCLIENT\" || (cd client && yarn install --pure-lockfile)",
2017-06-10 22:57:31 +02:00
"tsc": "tsc",
2018-01-23 18:58:07 +01:00
"commander": "commander",
2019-07-29 11:59:29 +02:00
"lint": "npm run ci -- lint",
"ng": "ng",
2017-06-16 14:32:15 +02:00
"ts-node": "ts-node",
2020-01-31 16:56:52 +01:00
"eslint": "eslint",
2021-12-24 13:16:55 +01:00
"resolve-tspaths": "resolve-tspaths",
2022-01-03 17:13:11 +01:00
"resolve-tspaths:all": "npm run resolve-tspaths:server && npm run resolve-tspaths:cli",
"resolve-tspaths:server": "npm run resolve-tspaths -- --project tsconfig.json --src . --out dist",
"resolve-tspaths:cli": "npm run resolve-tspaths -- --project ./server/tools/tsconfig.json --src ./server/tools --out ./dist/server/tools",
2018-06-07 16:50:33 +02:00
"concurrently": "concurrently",
2018-04-19 16:23:09 +02:00
"mocha": "mocha",
2021-05-05 10:56:40 +02:00
"ci": "bash ./scripts/ci.sh",
"release": "bash ./scripts/release.sh",
"release-embed-api": "bash ./scripts/release-embed-api.sh",
"nightly": "bash ./scripts/nightly.sh",
"openapi-clients": "bash ./scripts/openapi-clients.sh",
"client-report": "bash ./scripts/client-report.sh",
2021-04-28 16:41:07 +02:00
"swagger-cli": "swagger-cli"
},
2015-06-09 17:41:40 +02:00
"dependencies": {
"@aws-sdk/client-s3": "^3.23.0",
"@aws-sdk/lib-storage": "^3.72.0",
2022-05-09 11:49:25 +02:00
"@aws-sdk/node-http-handler": "^3.82.0",
"@babel/parser": "7.17.8",
2022-02-08 11:10:48 +01:00
"@peertube/feed": "^5.0.1",
2022-05-10 11:49:21 +02:00
"@peertube/http-signature": "^1.6.0",
"@uploadx/core": "^5.1.2",
2019-06-06 15:39:11 +02:00
"async": "^3.0.1",
2017-07-12 11:56:02 +02:00
"async-lru": "^1.1.1",
2021-03-03 15:22:38 +01:00
"bcrypt": "5.0.1",
2021-08-18 09:14:51 +02:00
"bencode": "^2.0.2",
"bittorrent-tracker": "^9.0.0",
2017-07-05 13:26:25 +02:00
"bluebird": "^3.5.0",
2021-11-10 15:30:44 +01:00
"bull": "^4.1.0",
2018-09-11 16:27:07 +02:00
"bytes": "^3.0.0",
2020-09-17 09:20:52 +02:00
"chokidar": "^3.4.2",
2022-02-09 13:44:02 +01:00
"commander": "^9.0.0",
2018-12-04 09:34:29 +01:00
"config": "^3.0.0",
2018-06-28 13:59:48 +02:00
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
2021-08-06 15:51:45 +02:00
"create-torrent": "^5.0.0",
2018-07-31 14:02:47 +02:00
"deep-object-diff": "^1.1.0",
2022-03-21 14:20:47 +01:00
"email-templates": "^9.0.0",
2021-10-21 16:28:39 +02:00
"execa": "^5.1.1",
2015-06-09 17:41:40 +02:00
"express": "^4.12.4",
2022-01-14 14:15:23 +01:00
"express-rate-limit": "^6.1.0",
2020-01-31 16:56:52 +01:00
"express-validator": "^6.4.0",
2019-12-03 14:12:47 +01:00
"flat": "^5.0.0",
2016-05-03 22:41:46 +02:00
"fluent-ffmpeg": "^2.1.0",
2021-05-05 11:08:02 +02:00
"fs-extra": "^10.0.0",
2021-03-08 14:24:11 +01:00
"got": "^11.8.2",
2022-01-14 14:15:23 +01:00
"helmet": "^5.0.1",
2021-08-25 06:08:37 -07:00
"hpagent": "^0.1.2",
"http-problem-details": "^0.1.5",
2019-06-06 15:39:11 +02:00
"ip-anonymize": "^0.1.0",
2021-06-15 16:14:57 +02:00
"ipaddr.js": "2.0.1",
2020-06-17 10:55:40 +02:00
"is-cidr": "^4.0.0",
2021-04-12 16:35:04 +02:00
"iso-639-3": "2.2.0",
2020-08-25 13:54:59 +02:00
"jimp": "^0.16.0",
2021-02-03 09:33:05 +01:00
"js-yaml": "^4.0.0",
2021-04-12 16:35:04 +02:00
"jsonld": "~5.2.0",
2018-05-22 16:02:29 +02:00
"lodash": "^4.17.10",
2022-04-15 10:56:46 +02:00
"lru-cache": "7.8.1",
2020-11-19 08:58:34 +01:00
"magnet-uri": "^6.1.0",
2021-05-05 11:08:02 +02:00
"markdown-it": "^12.0.4",
2020-11-10 10:09:11 +01:00
"markdown-it-emoji": "^2.0.0",
2022-03-24 13:36:47 +01:00
"maxmind": "^4.3.6",
2018-09-14 11:52:23 +02:00
"memoizee": "^0.4.14",
2015-06-09 17:41:40 +02:00
"morgan": "^1.5.3",
2021-12-08 08:58:26 +01:00
"multer": "^1.4.4",
2020-09-17 09:20:52 +02:00
"node-media-server": "^2.1.4",
2019-04-02 16:42:13 +02:00
"nodemailer": "^6.0.0",
2021-03-12 16:21:56 +01:00
"oauth2-server": "3.1.1",
2020-11-19 08:58:34 +01:00
"parse-torrent": "^9.1.0",
"password-generator": "^2.0.2",
2017-11-09 17:51:58 +01:00
"pem": "^1.12.3",
2020-06-17 10:55:40 +02:00
"pg": "^8.2.1",
"prompt": "^1.0.0",
2021-10-26 09:57:38 +02:00
"proxy-addr": "^2.0.7",
2020-06-17 10:55:40 +02:00
"pug": "^3.0.0",
2021-12-24 14:49:03 +01:00
"redis": "^4.0.1",
2018-12-06 11:50:40 +01:00
"reflect-metadata": "^0.1.12",
"sanitize-html": "2.x",
2022-04-15 10:56:46 +02:00
"sequelize": "6.19.0",
2020-12-08 14:30:29 +01:00
"sequelize-typescript": "^2.0.0-beta.1",
2021-06-28 17:30:59 +02:00
"short-uuid": "^4.2.0",
2021-05-05 11:08:02 +02:00
"sitemap": "^7.0.0",
2021-04-12 16:35:04 +02:00
"socket.io": "^4.0.1",
2021-01-25 15:37:41 +01:00
"sql-formatter": "^4.0.0-beta.0",
2018-07-16 14:22:16 +02:00
"srt-to-vtt": "^1.1.2",
2019-10-21 16:02:15 +02:00
"tsconfig-paths": "^3.9.0",
2020-06-05 10:03:53 +02:00
"tslib": "^2.0.0",
"useragent": "^2.3.0",
2020-04-01 14:16:19 +02:00
"validator": "^13.0.0",
2017-11-09 17:51:58 +01:00
"webfinger.js": "^2.6.6",
2021-06-15 16:14:57 +02:00
"webtorrent": "^1.0.0",
2022-04-08 14:32:31 +02:00
"winston": "3.7.2",
2021-10-21 16:28:39 +02:00
"ws": "^8.0.0"
2015-06-09 17:41:40 +02:00
},
"devDependencies": {
2021-10-26 16:03:53 +02:00
"@peertube/maildev": "^1.2.0",
2019-06-06 15:39:11 +02:00
"@types/async": "^3.0.0",
"@types/async-lock": "^1.1.0",
2021-06-25 17:39:27 +02:00
"@types/bcrypt": "^5.0.0",
2021-08-27 14:32:44 +02:00
"@types/bencode": "^2.0.0",
2021-05-05 11:08:02 +02:00
"@types/bluebird": "^3.5.33",
2017-05-15 22:22:03 +02:00
"@types/body-parser": "^1.16.3",
2021-05-05 11:08:02 +02:00
"@types/bull": "^3.15.0",
2018-09-11 16:27:07 +02:00
"@types/bytes": "^3.0.0",
2017-09-04 21:21:47 +02:00
"@types/chai": "^4.0.4",
"@types/chai-json-schema": "^1.4.3",
"@types/chai-xml": "^0.3.1",
2022-01-14 14:15:23 +01:00
"@types/config": "^0.0.41",
2021-08-27 14:32:44 +02:00
"@types/create-torrent": "^5.0.0",
2021-02-03 09:33:05 +01:00
"@types/express": "4.17.9",
"@types/fluent-ffmpeg": "^2.1.16",
2020-06-17 10:55:40 +02:00
"@types/fs-extra": "^9.0.1",
2017-05-15 22:22:03 +02:00
"@types/lodash": "^4.14.64",
2022-03-21 14:20:47 +01:00
"@types/lru-cache": "^7.5.0",
2017-06-10 22:15:25 +02:00
"@types/magnet-uri": "^5.1.1",
2021-07-22 11:58:44 +02:00
"@types/maildev": "^0.0.3",
2018-09-14 11:52:23 +02:00
"@types/memoizee": "^0.4.2",
2020-02-28 16:03:39 +01:00
"@types/mkdirp": "^1.0.0",
2021-08-06 15:51:45 +02:00
"@types/mocha": "^9.0.0",
2017-05-15 22:22:03 +02:00
"@types/morgan": "^1.7.32",
2017-08-25 18:36:49 +02:00
"@types/multer": "^1.3.3",
2021-03-03 15:22:38 +01:00
"@types/node": "^14.14.31",
2019-06-06 15:39:11 +02:00
"@types/nodemailer": "^6.2.0",
2018-08-27 16:34:41 +02:00
"@types/oauth2-server": "^3.0.8",
2017-11-09 17:51:58 +01:00
"@types/pem": "^1.9.3",
2017-08-25 18:36:49 +02:00
"@types/request": "^2.0.3",
2017-09-04 21:21:47 +02:00
"@types/supertest": "^2.0.3",
2020-06-17 10:55:40 +02:00
"@types/validator": "^13.0.0",
2020-11-19 08:58:34 +01:00
"@types/webtorrent": "^0.109.0",
2021-10-12 14:31:59 +02:00
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
2021-02-22 15:34:32 +01:00
"autocannon": "^7.0.4",
2017-08-25 18:36:49 +02:00
"chai": "^4.1.1",
"chai-json-schema": "^1.5.0",
2020-11-19 08:58:34 +01:00
"chai-xml": "^0.4.0",
2022-01-14 14:15:23 +01:00
"concurrently": "^7.0.0",
2021-11-09 13:49:08 +01:00
"depcheck": "^1.4.2",
2021-10-12 14:31:59 +02:00
"eslint": "^8.0.0",
"eslint-config-standard-with-typescript": "^21.0.1",
2020-01-31 16:56:52 +01:00
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
2021-12-24 13:53:19 +01:00
"eslint-plugin-promise": "^6.0.0",
"fast-xml-parser": "^4.0.0-beta.8",
2021-06-15 16:14:57 +02:00
"mocha": "^9.0.0",
2021-08-25 06:08:37 -07:00
"proxy": "^1.0.2",
2022-04-15 10:56:46 +02:00
"resolve-tspaths": "^0.3.0",
2021-04-12 16:35:04 +02:00
"socket.io-client": "^4.0.1",
2020-11-19 08:58:34 +01:00
"supertest": "^6.0.1",
2020-04-01 14:16:19 +02:00
"swagger-cli": "^4.0.2",
2022-03-21 14:20:47 +01:00
"ts-node": "10.7.0",
2022-04-08 14:32:31 +02:00
"tsc-watch": "^5.0.3",
2020-11-19 08:58:34 +01:00
"typescript": "^4.0.5"
2015-06-09 17:41:40 +02:00
},
2020-08-08 12:01:28 +02:00
"bundlewatch": {
2020-08-05 16:44:48 +02:00
"files": [
{
2021-02-11 11:23:19 +01:00
"path": "client/dist/en-US/*.js",
2020-08-05 16:44:48 +02:00
"maxSize": "1mb"
2020-08-06 10:26:39 +02:00
},
{
"path": "client/dist/standalone/videos/video-embed.bundle.js",
"maxSize": "1mb"
},
{
"path": "client/dist/standalone/videos/video-embed.css",
"maxSize": "1mb"
2020-08-05 16:44:48 +02:00
}
]
2019-08-30 16:50:12 +02:00
}
2015-06-09 17:41:40 +02:00
}