64 lines
1.7 KiB
JSON
64 lines
1.7 KiB
JSON
{
|
|
"name": "peertube-plugin-livechat",
|
|
"description": "PeerTube plugin livechat",
|
|
"version": "1.0.4",
|
|
"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",
|
|
"npm-run-all": "^4.1.5",
|
|
"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": {
|
|
"clean": "rm -rf dist/*",
|
|
"prepare": "npm run build",
|
|
"build:converse": "mkdir -p dist/conversejs && cp -r node_modules/converse.js/dist/* dist/conversejs/",
|
|
"build:images": "mkdir -p dist/images && cp public/images/* dist/images/",
|
|
"build:webpack": "webpack --mode=production",
|
|
"build": "npm-run-all -s clean -p build:converse build:images build:webpack",
|
|
"lint": "npx eslint --ext .js ."
|
|
},
|
|
"staticDirs": {
|
|
"static": "dist/static",
|
|
"conversejs": "dist/conversejs/",
|
|
"images": "dist/images/"
|
|
},
|
|
"translations": {
|
|
"fr-FR": "./languages/fr.json"
|
|
}
|
|
}
|