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

38 lines
890 B
JSON
Raw Normal View History

2019-07-16 09:53:38 +00:00
{
"name": "peertube-plugin-hello-world",
2019-07-26 07:42:52 +00:00
"version": "0.0.12",
2019-07-16 09:53:38 +00:00
"description": "Hello world PeerTube plugin example",
"engine": {
"peertube": ">=1.3.0"
},
"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" ]
2019-07-16 09:53:38 +00:00
}
]
}