-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.14 KB
/
package.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.14 KB
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
{
"name": "peertube-plugin-podcast2",
"description": "PeerTube plugin for podcast support",
"version": "0.5.4",
"author": "DHK2",
"bugs": "https://github.com/dhk2/peertube-plugin-podcast2/issues",
"clientScripts": [
{
"script": "dist/common-client-plugin.js",
"scopes": [
"common"
]
}
],
"css": [
"assets/style.css"
],
"engine": {
"peertube": ">=5.1.0"
},
"homepage": "https://github.com/dhk2/peertube-plugin-podcast2",
"keywords": [
"peertube",
"plugin",
"podcast"
],
"library": "./main.js",
"scripts": {
"prepare": "npm run build",
"build": "node ./scripts/build.js"
},
"staticDirs": {
"images": "public/images"
},
"translations": {
"fr-FR": "./languages/fr.json"
},
"devDependencies": {
"esbuild": "^0.14.36"
},
"dependencies": {
"@extractus/feed-extractor": "^7.0.9",
"axios": "^1.6.2",
"image-data-uri": "^2.0.1",
"nodejs-file-downloader": "^4.12.1",
"rss-parser": "^3.13.0",
"rss-to-json": "^2.1.1",
"tiny-json-http": "^7.5.1",
"uuidv5": "^1.0.0",
"yt-dlp-wrap": "^2.3.12",
"yt-info": "^0.1.3"
}
}