peertube-theme-nctv-dark/peertube-plugin-hello-world/package.json

53 lines
1.2 KiB
JSON
Raw Normal View History

2019-07-16 09:53:38 +00:00
{
"name": "peertube-plugin-hello-world",
2020-04-30 09:06:56 +00:00
"version": "0.0.18",
2019-07-16 09:53:38 +00:00
"description": "Hello world PeerTube plugin example",
"engine": {
2021-04-12 09:10:40 +00:00
"peertube": ">=3.2.0"
2019-07-16 09:53:38 +00:00
},
"keywords": [
"peertube",
"plugin"
],
2019-07-16 09:59:08 +00:00
"homepage": "https://framagit.org/framasoft/peertube/official-plugins/tree/master/peertube-plugin-hello-world",
2019-07-16 09:53:38 +00:00
"author": "Chocobozzz",
2019-07-16 09:59:08 +00:00
"bugs": "https://framagit.org/framasoft/peertube/official-plugins/issues",
2019-07-16 09:53:38 +00:00
"library": "./main.js",
"staticDirs": {
"images": "public/images"
},
"css": [
"assets/style1.css",
"assets/style2.css"
],
"clientScripts": [
{
"script": "client/common-client-plugin.js",
"scopes": [ "common" ]
},
{
"script": "client/video-watch-client-plugin.js",
"scopes": [ "video-watch" ]
2019-07-22 14:40:52 +00:00
},
{
"script": "client/search-client-plugin.js",
"scopes": [ "search" ]
2020-05-07 13:50:46 +00:00
},
{
"script": "client/login-client-plugin.js",
"scopes": [ "login" ]
2020-08-21 12:45:18 +00:00
},
{
"script": "client/embed-client-plugin.js",
"scopes": [ "embed" ]
},
{
"script": "client/video-edit-client-plugin.js",
"scopes": [ "video-edit" ]
2019-07-16 09:53:38 +00:00
}
2019-07-26 12:45:53 +00:00
],
"translations": {
"fr-FR": "./languages/fr.json"
}
2019-07-16 09:53:38 +00:00
}