2020-08-21 12:46:25 +00:00
|
|
|
{
|
|
|
|
"name": "peertube-plugin-video-annotation",
|
|
|
|
"description": "PeerTube plugin video annotation",
|
2021-02-17 09:55:50 +00:00
|
|
|
"version": "0.0.6",
|
2020-08-21 12:46:25 +00:00
|
|
|
"author": "Chocobozzz",
|
|
|
|
"bugs": "https://framagit.org/framasoft/peertube/peertube-plugin-video-annotation/issues",
|
|
|
|
"clientScripts": [
|
|
|
|
{
|
|
|
|
"script": "dist/embed-client-plugin.js",
|
|
|
|
"scopes": [
|
|
|
|
"embed"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"script": "dist/video-edit-client-plugin.js",
|
|
|
|
"scopes": [
|
|
|
|
"video-edit"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"script": "dist/video-watch-client-plugin.js",
|
|
|
|
"scopes": [
|
|
|
|
"video-watch"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"css": [
|
|
|
|
"assets/style.css",
|
|
|
|
"assets/videojs-overlay.css"
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
2023-02-06 09:09:42 +00:00
|
|
|
"dompurify": "^2.4.3",
|
|
|
|
"esbuild": "^0.17.5",
|
|
|
|
"esbuild-plugin-external-global": "^1.0.1",
|
2020-08-21 12:46:25 +00:00
|
|
|
"videojs-overlay": "^2.1.4"
|
|
|
|
},
|
|
|
|
"engine": {
|
|
|
|
"peertube": ">=2.4.0"
|
|
|
|
},
|
2020-10-30 15:11:39 +00:00
|
|
|
"homepage": "https://framagit.org/framasoft/peertube/official-plugins/-/tree/master/peertube-plugin-video-annotation",
|
2020-08-21 12:46:25 +00:00
|
|
|
"keywords": [
|
|
|
|
"peertube",
|
|
|
|
"plugin"
|
|
|
|
],
|
|
|
|
"library": "./main.js",
|
|
|
|
"scripts": {
|
|
|
|
"prepare": "npm run build",
|
2023-02-06 09:09:42 +00:00
|
|
|
"build": "sh ./scripts/build.sh"
|
2020-08-21 12:46:25 +00:00
|
|
|
},
|
|
|
|
"staticDirs": {},
|
|
|
|
"translations": {
|
|
|
|
"fr-FR": "./languages/fr.json"
|
2020-08-24 07:54:14 +00:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"assets",
|
|
|
|
"languages",
|
|
|
|
"public",
|
|
|
|
"main.js"
|
|
|
|
]
|
2020-08-21 12:46:25 +00:00
|
|
|
}
|