43 lines
932 B
JSON
Raw Normal View History

2019-07-16 16:39:36 +02:00
{
"name": "peertube-plugin-quickstart",
"description": "PeerTube plugin quickstart",
"version": "0.0.2",
"author": "Chocobozzz",
"bugs": "https://framagit.org/framasoft/peertube/peertube-plugin-quickstart/issues",
"clientScripts": [
{
"script": "dist/common-client-plugin.js",
"scopes": [
"common"
]
}
],
"css": [
"assets/style.css"
],
"devDependencies": {
"@purtuga/esm-webpack-plugin": "^1.1.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
2019-07-16 16:39:36 +02:00
"engine": {
"peertube": ">=1.3.0"
},
"homepage": "https://framagit.org/framasoft/peertube/peertube-plugin-quickstart",
2019-07-16 16:39:36 +02:00
"keywords": [
"peertube",
"plugin"
],
"library": "./main.js",
2019-11-19 18:09:41 +01:00
"scripts": {
2020-01-28 12:43:33 +01:00
"prepare": "npm run build",
2019-11-19 18:09:41 +01:00
"build": "webpack --mode=production"
},
2019-07-16 16:39:36 +02:00
"staticDirs": {
"images": "public/images"
},
2019-07-26 14:48:18 +02:00
"translations": {
"fr-FR": "./languages/fr.json"
}
2019-07-16 16:39:36 +02:00
}