peertube-theme-nctv-dark/peertube-plugin-matomo/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2019-07-26 07:43:20 +00:00
{
"name": "peertube-plugin-matomo",
2022-06-08 13:19:47 +00:00
"version": "1.0.2",
2019-07-30 07:49:40 +00:00
"description": "Matomo plugin that tracks page views on a PeerTube instance.",
2019-07-26 07:43:20 +00:00
"engine": {
"peertube": ">=4.2.0"
2019-07-26 07:43:20 +00:00
},
"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"
},
2019-07-26 07:43:20 +00:00
"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",
2022-03-15 13:09:07 +00:00
"scopes": [
"common"
]
},
{
"script": "dist/embed-client-plugin.js",
"scopes": [
"embed"
]
2019-07-26 07:43:20 +00:00
}
2019-07-26 12:45:53 +00:00
],
"translations": {},
"devDependencies": {
"esbuild": "^0.14.27"
}
2019-07-26 07:43:20 +00:00
}