-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "peertube-plugin-umami",
"version": "0.1.1",
"description": "Umami 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://github.com/inp-net/peertube-plugin-umami",
"author": "Chocobozzz",
"bugs": "https://github.com/inp-net/peertube-plugin-umami/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"
}
}