peertube-plugin-livechat/package.json

164 lines
6.2 KiB
JSON
Raw Normal View History

2019-07-16 14:39:36 +00:00
{
2021-02-18 14:13:30 +00:00
"name": "peertube-plugin-livechat",
2023-12-27 09:54:37 +00:00
"description": "PeerTube plugin livechat: create chat rooms for your Peertube lives! Comes with many features: federation, moderation tools, chat bot, chat persistence, OBS integration, ...",
2024-07-11 07:40:44 +00:00
"version": "10.3.0",
2022-08-01 13:24:55 +00:00
"license": "AGPL-3.0",
2021-11-03 17:13:00 +00:00
"author": {
"name": "John Livingston",
"url": "https://github.com/JohnXLivingston"
},
2021-02-18 14:13:30 +00:00
"bugs": "https://github.com/JohnXLivingston/peertube-plugin-livechat/issues",
"clientScripts": [
{
"script": "dist/client/common-client-plugin.js",
"scopes": [
"common"
]
},
{
"script": "dist/client/admin-plugin-client-plugin.js",
"scopes": [
"admin-plugin"
]
}
],
"css": [
2024-06-14 15:31:35 +00:00
"dist/assets/styles/style.css"
],
"dependencies": {
"@xmpp/jid": "^0.13.1",
"async": "^3.2.2",
2021-04-16 18:58:58 +00:00
"decache": "^4.6.0",
"escape-html": "^1.0.3",
"got": "^11.8.2",
"http-proxy": "^1.18.1",
2021-12-01 14:11:56 +00:00
"log-rotate": "^0.2.8",
"openid-client": "^5.6.5",
2023-09-15 15:55:07 +00:00
"validate-color": "^2.2.1",
2024-03-07 09:14:36 +00:00
"xmppjs-chat-bot": "^0.3.0"
},
"devDependencies": {
"@lit-labs/motion": "^1.0.7",
"@lit/context": "^1.1.1",
"@lit/task": "^1.0.0",
"@peertube/feed": "^5.1.0",
2023-07-05 16:33:30 +00:00
"@peertube/peertube-types": "^5.2.0",
2021-08-06 14:40:20 +00:00
"@tsconfig/node12": "^1.0.9",
"@types/async": "^3.2.9",
"@types/escape-html": "^1.0.4",
2021-08-06 14:40:20 +00:00
"@types/express": "^4.17.13",
"@types/got": "^9.6.12",
"@types/http-proxy": "^1.17.9",
"@types/node": "^16.11.6",
"@types/winston": "^2.4.4",
"@types/xmpp__jid": "^1.3.5",
2021-08-06 14:40:20 +00:00
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
2023-09-25 15:12:10 +00:00
"commander": "^11.0.0",
"esbuild": "^0.16.1",
2021-08-06 14:40:20 +00:00
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.25.2",
2024-05-24 12:08:48 +00:00
"eslint-plugin-lit": "^1.13.0",
2021-02-20 10:55:00 +00:00
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-standard": "^5.0.0",
"lit": "^2.4.0",
2024-06-12 16:01:14 +00:00
"lit-analyzer": "^1.2.1",
"npm-run-all": "^4.1.5",
2021-11-18 14:59:47 +00:00
"sass": "^1.43.4",
2024-02-07 15:22:06 +00:00
"sharp": "^0.33.2",
"stylelint": "^14.0.1",
"stylelint-config-recommended-scss": "^5.0.1",
"stylelint-config-standard-scss": "^2.0.1",
"svgo": "^2.8.0",
"typescript": "^4.3.5",
"yaml": "^2.2.1"
},
2019-07-16 14:39:36 +00:00
"engine": {
2023-07-05 16:33:30 +00:00
"peertube": ">=4.2.0"
2019-07-16 14:39:36 +00:00
},
"engines": {
"npm": ">=7"
},
"homepage": "https://livingston.frama.io/peertube-plugin-livechat/",
"repository": "github:JohnXLivingston/peertube-plugin-livechat",
2019-07-16 14:39:36 +00:00
"keywords": [
"peertube",
"plugin"
],
"library": "./dist/server/main.js",
2019-11-19 17:09:41 +00:00
"scripts": {
"clean": "rm -rf dist/* build/* support/documentation/content/translations/* support/documentation/i18n/*",
"clean:light": "rm -rf dist/* support/documentation/content/translations/* support/documentation/i18n/*",
2021-11-24 16:29:25 +00:00
"prepare": "npm run clean && npm run build",
2021-11-08 15:35:26 +00:00
"build:converse": "bash conversejs/build-conversejs.sh",
"build:converse-no-loc": "bash conversejs/build-conversejs.sh no-loc",
"build:prosody": "bash build-prosody.sh",
"build:images": "mkdir -p dist/client/images && npx svgo -f assets/images/ -o dist/client/images/",
"build:avatars": "./build-avatars.js",
2023-08-01 14:09:33 +00:00
"check:client:tsc": "npx tsc --p client/ --noEmit --skipLibCheck && npx tsc --p conversejs/ --noemit --skipLibCheck",
"build:client": "node ./build-client.js --mode=production",
2021-04-07 14:52:38 +00:00
"build:server": "npx tsc --build server/tsconfig.json",
"build:serverconverse": "mkdir -p dist/server/conversejs && cp conversejs/index.html dist/server/conversejs/",
"build:prosodymodules": "mkdir -p dist/server/prosody-modules && cp -r prosody-modules/* dist/server/prosody-modules/",
"build:styles": "sass assets/styles:dist/assets/styles",
"build:languages": "node ./build-languages.js",
"build": "npm-run-all -s clean:light build:languages check:client:tsc -s build:client build:server build:images build:styles build:avatars build:serverconverse build:prosodymodules build:converse build:prosody",
2024-06-12 16:01:14 +00:00
"lint": "npm-run-all -s lint:script lint:lit lint:styles lint:reuse",
2024-05-25 12:39:45 +00:00
"lint:fix": "npm-run-all -s lint:script:fix lint:styles:fix",
"lint:script": "npx eslint --ext .js --ext .ts .",
2024-05-25 12:39:45 +00:00
"lint:script:fix": "npx eslint --ext .js --ext .ts . --fix",
2024-06-12 16:01:14 +00:00
"lint:lit": "npx lit-analyzer client/ conversejs/",
2023-09-06 15:28:26 +00:00
"lint:styles": "stylelint 'conversejs/**/*.scss' 'assets/styles/**/*.scss'",
2024-05-25 12:39:45 +00:00
"lint:styles:fix": "stylelint 'conversejs/**/*.scss' 'assets/styles/**/*.scss' --fix",
2024-05-23 10:28:08 +00:00
"lint:reuse": "reuse lint",
"show:npmfiles": "npx npm-packlist",
"doc:translate": "bash doc-translate.sh"
2019-11-19 17:09:41 +00:00
},
"staticDirs": {
"static": "dist/client/static",
"conversejs": "dist/client/conversejs/",
2021-04-09 19:28:16 +00:00
"images": "dist/client/images/",
"settings": "dist/client/settings"
},
2019-07-26 12:48:18 +00:00
"translations": {
"ar": "./dist/languages/ar.json",
"is": "./dist/languages/is.json",
"fa-IR": "./dist/languages/fa.json",
"vi-VN": "./dist/languages/vi.json",
"hu-HU": "./dist/languages/hu.json",
"th-TH": "./dist/languages/th.json",
"fi-FI": "./dist/languages/fi.json",
"nl-NL": "./dist/languages/nl.json",
"gd": "./dist/languages/gd.json",
"el-GR": "./dist/languages/el.json",
"es-ES": "./dist/languages/es.json",
"oc": "./dist/languages/oc.json",
"pt-BR": "./dist/languages/pt.json",
"sv-SE": "./dist/languages/sv.json",
"ru-RU": "./dist/languages/ru.json",
"fr-FR": "./dist/languages/fr.json",
"ja-JP": "./dist/languages/ja.json",
"eu-ES": "./dist/languages/eu.json",
"ca-ES": "./dist/languages/ca.json",
"gl-ES": "./dist/languages/gl.json",
"cs-CZ": "./dist/languages/cs.json",
"hr": "./dist/languages/hr.json",
"eo": "./dist/languages/eo.json",
"de-DE": "./dist/languages/de.json",
"it-IT": "./dist/languages/it.json",
"uk-UA": "./dist/languages/uk.json",
"sq": "./dist/languages/sq.json",
"tok": "./dist/languages/tok.json",
"tr-TR": "./dist/languages/tr.json",
"nn": "./dist/languages/nn.json",
"nb-NO": "./dist/languages/nb.json",
"kab": "./dist/languages/kab.json",
"pl-PL": "./dist/languages/pl.json",
"zh-Hans-CN": "./dist/languages/zh-Hans.json",
"zh-Hans-TW": "./dist/languages/zh-Hant.json"
2019-07-26 12:48:18 +00:00
}
2019-07-16 14:39:36 +00:00
}