-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·38 lines (38 loc) · 1 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
{
"name": "dirtyrss",
"version": "0.1.8",
"description": "Transforms some webpages in podcast feeds",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node ./dist/index.js",
"dev": "tsc-watch --onSuccess \"node --inspect ./dist/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/command-exists": "^1.2.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.45",
"tsc-watch": "^4.6.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@fastify/static": "^8.1.1",
"@terascope/fetch-github-release": "^0.8.7",
"cheerio": "^1.0.0-rc.10",
"command-exists": "^1.2.9",
"fastify": "^5.3.2",
"fs-extra": "^10.0.1",
"got": "^12.0.0",
"http4ts": "^0.1.2",
"node-cache": "^5.1.2",
"p-ratelimit": "^1.0.1",
"perf_hooks": "^0.0.1",
"podcast": "^2.0.0",
"python-shell": "^3.0.1"
}
}