58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "peertube-plugin-livechat",
|
|
"description": "PeerTube plugin livechat",
|
|
"version": "1.0.3",
|
|
"author": "John Livingston",
|
|
"bugs": "https://github.com/JohnXLivingston/peertube-plugin-livechat/issues",
|
|
"clientScripts": [
|
|
{
|
|
"script": "dist/videowatch-client-plugin.js",
|
|
"scopes": [
|
|
"video-watch"
|
|
]
|
|
},
|
|
{
|
|
"script": "dist/common-client-plugin.js",
|
|
"scopes": [
|
|
"common"
|
|
]
|
|
}
|
|
],
|
|
"css": [
|
|
"assets/style.css"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@purtuga/esm-webpack-plugin": "^1.1.1",
|
|
"converse.js": "^7.0.4",
|
|
"eslint": "^7.20.0",
|
|
"eslint-config-standard": "^16.0.2",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^4.3.1",
|
|
"webpack": "^4.41.2",
|
|
"webpack-cli": "^3.3.10"
|
|
},
|
|
"engine": {
|
|
"peertube": ">=3.0.1"
|
|
},
|
|
"homepage": "https://github.com/JohnXLivingston/peertube-plugin-livechat",
|
|
"keywords": [
|
|
"peertube",
|
|
"plugin"
|
|
],
|
|
"library": "./main.js",
|
|
"scripts": {
|
|
"prepare": "npm run build",
|
|
"build": "mkdir -p dist/conversejs && cp -r node_modules/converse.js/dist/* dist/conversejs/ && webpack --mode=production",
|
|
"lint": "npx eslint --ext .js ."
|
|
},
|
|
"staticDirs": {
|
|
"static": "dist/static",
|
|
"conversejs": "dist/conversejs/"
|
|
},
|
|
"translations": {
|
|
"fr-FR": "./languages/fr.json"
|
|
}
|
|
}
|