peertube-theme-nctv-dark/peertube-plugin-video-annot.../package.json

62 lines
1.3 KiB
JSON
Raw Normal View History

2020-08-21 12:46:25 +00:00
{
"name": "peertube-plugin-video-annotation",
"description": "PeerTube plugin video annotation",
2023-02-06 09:10:37 +00:00
"version": "0.0.7",
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
}