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

83 lines
1.6 KiB
JSON
Raw Normal View History

2019-07-16 09:53:38 +00:00
{
"name": "peertube-plugin-hello-world",
2022-08-03 08:39:31 +00:00
"version": "0.0.20",
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",
2022-01-20 08:36:52 +00:00
"scopes": [
"common"
]
2019-07-16 09:53:38 +00:00
},
{
"script": "client/video-watch-client-plugin.js",
2022-01-20 08:36:52 +00:00
"scopes": [
"video-watch"
]
2019-07-22 14:40:52 +00:00
},
{
"script": "client/search-client-plugin.js",
2022-01-20 08:36:52 +00:00
"scopes": [
"search"
]
2020-05-07 13:50:46 +00:00
},
{
"script": "client/login-client-plugin.js",
2022-01-20 08:36:52 +00:00
"scopes": [
"login"
]
},
{
"script": "client/signup-client-plugin.js",
"scopes": [
"signup"
]
2020-08-21 12:45:18 +00:00
},
{
"script": "client/embed-client-plugin.js",
2022-01-20 08:36:52 +00:00
"scopes": [
"embed"
]
2020-08-21 12:45:18 +00:00
},
{
"script": "client/video-edit-client-plugin.js",
2022-01-20 08:36:52 +00:00
"scopes": [
"video-edit"
]
2021-04-22 09:35:02 +00:00
},
{
"script": "client/admin-plugin-client-plugin.js",
2022-01-20 08:36:52 +00:00
"scopes": [
"admin-plugin"
]
2022-08-03 08:39:31 +00:00
},
{
"script": "client/video-channel-client-plugin.js",
"scopes": [
"video-channel"
]
2019-07-16 09:53:38 +00:00
}
2019-07-26 12:45:53 +00:00
],
"translations": {
2021-04-22 09:35:02 +00:00
"fr": "./languages/fr.json"
2019-07-26 12:45:53 +00:00
}
2019-07-16 09:53:38 +00:00
}