You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
856 B
40 lines
856 B
{
|
|
"name": "peertube-plugin-quickstart",
|
|
"description": "PeerTube plugin quickstart",
|
|
"version": "0.0.4",
|
|
"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"
|
|
],
|
|
"engine": {
|
|
"peertube": ">=1.3.0"
|
|
},
|
|
"homepage": "https://framagit.org/framasoft/peertube/peertube-plugin-quickstart",
|
|
"keywords": [
|
|
"peertube",
|
|
"plugin"
|
|
],
|
|
"library": "./main.js",
|
|
"scripts": {
|
|
"prepare": "npm run build",
|
|
"build": "node ./scripts/build.js"
|
|
},
|
|
"staticDirs": {
|
|
"images": "public/images"
|
|
},
|
|
"translations": {
|
|
"fr-FR": "./languages/fr.json"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.14.36"
|
|
}
|
|
}
|
|
|