peertube-plugin-livechat/package.json

64 lines
1.7 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",
"description": "PeerTube plugin livechat",
2021-03-01 17:50:07 +00:00
"version": "1.0.4",
2021-02-18 14:13:30 +00:00
"author": "John Livingston",
"bugs": "https://github.com/JohnXLivingston/peertube-plugin-livechat/issues",
"clientScripts": [
{
2021-02-18 17:31:12 +00:00
"script": "dist/videowatch-client-plugin.js",
"scopes": [
2021-02-18 17:31:12 +00:00
"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",
2021-02-20 10:55:00 +00:00
"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"
},
2019-07-16 14:39:36 +00:00
"engine": {
2021-02-18 14:13:30 +00:00
"peertube": ">=3.0.1"
2019-07-16 14:39:36 +00:00
},
2021-02-18 14:13:30 +00:00
"homepage": "https://github.com/JohnXLivingston/peertube-plugin-livechat",
2019-07-16 14:39:36 +00:00
"keywords": [
"peertube",
"plugin"
],
"library": "./main.js",
2019-11-19 17:09:41 +00:00
"scripts": {
"clean": "rm -rf dist/*",
2020-01-28 11:43:33 +00:00
"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",
2021-02-20 10:55:00 +00:00
"lint": "npx eslint --ext .js ."
2019-11-19 17:09:41 +00:00
},
"staticDirs": {
"static": "dist/static",
"conversejs": "dist/conversejs/",
"images": "dist/images/"
},
2019-07-26 12:48:18 +00:00
"translations": {
"fr-FR": "./languages/fr.json"
}
2019-07-16 14:39:36 +00:00
}