peertube-theme-nctv-dark/peertube-plugin-matomo/package.json
2022-06-08 15:19:47 +02:00

40 lines
1.1 KiB
JSON

{
"name": "peertube-plugin-matomo",
"version": "1.0.2",
"description": "Matomo plugin that tracks page views on a PeerTube instance.",
"engine": {
"peertube": ">=4.2.0"
},
"keywords": [
"peertube",
"plugin"
],
"scripts": {
"build": "esbuild client/common-client-plugin.js --minify --bundle --format=esm --outfile=dist/common-client-plugin.js --target=safari11 && esbuild client/embed-client-plugin.js --minify --bundle --format=esm --outfile=dist/embed-client-plugin.js --target=safari11"
},
"homepage": "https://framagit.org/framasoft/peertube/official-plugins/tree/master/peertube-plugin-matomo",
"author": "Chocobozzz",
"bugs": "https://framagit.org/framasoft/peertube/official-plugins/issues",
"library": "./main.js",
"staticDirs": {},
"css": [],
"clientScripts": [
{
"script": "dist/common-client-plugin.js",
"scopes": [
"common"
]
},
{
"script": "dist/embed-client-plugin.js",
"scopes": [
"embed"
]
}
],
"translations": {},
"devDependencies": {
"esbuild": "^0.14.27"
}
}