-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.27 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "peertube-plugin-social-sharing",
"description": "Share a video or playlist URL on social media (Mastodon, WordPress, reddit, Twitter, etc.)",
"version": "0.10.1",
"author": "kimsible",
"license": "AGPL-3.0",
"bugs": "https://github.com/kimsible/peertube-social-sharing/issues",
"clientScripts": [
{
"script": "dist/common-client-plugin.js",
"scopes": [
"common"
]
}
],
"devDependencies": {
"husky": "^4.3.8",
"lint-staged": "^11.1.2",
"rollup-plugin-livereload": "^2.0.5",
"standard": "^16.0.3",
"vite": "^2.5.3"
},
"engine": {
"peertube": ">=2.2.0"
},
"homepage": "https://github.com/kimsible/peertube-plugin-social-sharing",
"keywords": [
"peertube",
"plugin"
],
"library": "./main.js",
"scripts": {
"prepare": "vite build",
"build": "vite build"
},
"css": [
"assets/style.css"
],
"translations": {
"fr-FR": "./languages/fr.json",
"gd": "./languages/gd.json",
"sv-SE": "./languages/sv.json"
},
"dependencies": {
"uhtml": "^2.7.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "standard --fix"
},
"standard": {
"globals": [
"MutationObserver",
"Image"
]
}
}