-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 1.98 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "peertube-plugin-web-monetization",
"description": "Web Monetization PeerTube plugin",
"license": "(MIT OR Apache-2.0)",
"version": "1.0.6",
"author": "Miles DeWitt",
"homepage": "https://milesdewitt.com/peertube-web-monetization",
"repository": "https://github.com/samlich/peertube-plugin-web-monetization",
"bugs": "https://github.com/samlich/peertube-plugin-web-monetization",
"engine": {
"peertube": ">=3.2.0"
},
"clientScripts": [
{
"script": "dist/client/video-watch-client-plugin.js",
"scopes": [
"video-watch",
"embed"
]
},
{
"script": "dist/client/video-edit-client-plugin.js",
"scopes": [
"video-edit"
]
},
{
"script": "dist/client/common-client-plugin.js",
"scopes": [
"common"
]
}
],
"css": [
"assets/style.css"
],
"dependencies": {
"interval-promise": "^1.4",
"plotly.js-finance-dist-min": "^2.12",
"short-uuid": "^4.2"
},
"devDependencies": {
"@peertube/peertube-types": "^4.2",
"@types/express": "4.17",
"@types/plotly.js": "^1.54",
"video.js": "^7.19",
"@types/video.js": "^7.3",
"@webmonetization/types": "^0.0.0",
"@tsconfig/node12": "^1.0",
"@purtuga/esm-webpack-plugin": "^1.0",
"transform-loader": "^0.2.4",
"ify-loader": "^1.1",
"typescript": "^4.3",
"ts-loader": "^8.3",
"webpack": "^4.0",
"webpack-cli": "^4.0",
"standard": "^14.0",
"npm-run-all": "^4.1"
},
"keywords": [
"peertube",
"plugin"
],
"library": "./dist/server/main.js",
"scripts": {
"clean:light": "rm -rf dist/*",
"prepare": "npm run build",
"build:webpack": "webpack --mode production",
"build:server": "npx -p typescript tsc --build server/tsconfig.json",
"build": "npm-run-all -s clean:light -p build:webpack build:server",
"test": "standard"
},
"staticDirs": {
"images": "public/images"
},
"translations": {
"de-DE": "./languages/de.json"
}
}