86 lines
1.7 KiB
JSON
Raw Normal View History

2019-07-16 11:53:38 +02:00
{
"name": "peertube-plugin-hello-world",
2022-11-16 15:34:52 +01:00
"version": "0.0.22",
2019-07-16 11:53:38 +02:00
"description": "Hello world PeerTube plugin example",
"engine": {
2021-04-12 11:10:40 +02:00
"peertube": ">=3.2.0"
2019-07-16 11:53:38 +02:00
},
"keywords": [
"peertube",
"plugin"
],
2019-07-16 11:59:08 +02:00
"homepage": "https://framagit.org/framasoft/peertube/official-plugins/tree/master/peertube-plugin-hello-world",
2019-07-16 11:53:38 +02:00
"author": "Chocobozzz",
2019-07-16 11:59:08 +02:00
"bugs": "https://framagit.org/framasoft/peertube/official-plugins/issues",
2019-07-16 11:53:38 +02: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 09:36:52 +01:00
"scopes": [
"common"
]
2019-07-16 11:53:38 +02:00
},
{
"script": "client/video-watch-client-plugin.js",
2022-01-20 09:36:52 +01:00
"scopes": [
"video-watch"
]
2019-07-22 16:40:52 +02:00
},
{
"script": "client/search-client-plugin.js",
2022-01-20 09:36:52 +01:00
"scopes": [
"search"
]
2020-05-07 15:50:46 +02:00
},
{
"script": "client/login-client-plugin.js",
2022-01-20 09:36:52 +01:00
"scopes": [
"login"
]
},
{
"script": "client/signup-client-plugin.js",
"scopes": [
"signup"
]
2020-08-21 14:45:18 +02:00
},
{
"script": "client/embed-client-plugin.js",
2022-01-20 09:36:52 +01:00
"scopes": [
"embed"
]
2020-08-21 14:45:18 +02:00
},
{
"script": "client/video-edit-client-plugin.js",
2022-01-20 09:36:52 +01:00
"scopes": [
"video-edit"
]
2021-04-22 11:35:02 +02:00
},
{
"script": "client/admin-plugin-client-plugin.js",
2022-01-20 09:36:52 +01:00
"scopes": [
"admin-plugin"
]
2022-08-03 10:39:31 +02:00
},
{
"script": "client/video-channel-client-plugin.js",
"scopes": [
"video-channel"
]
2019-07-16 11:53:38 +02:00
}
2019-07-26 14:45:53 +02:00
],
"translations": {
2021-04-22 11:35:02 +02:00
"fr": "./languages/fr.json"
2022-10-11 11:25:37 +02:00
},
"dependencies": {
"ws": "^8.9.0"
2019-07-26 14:45:53 +02:00
}
2019-07-16 11:53:38 +02:00
}