-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.7 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.7 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "coomer-downloader",
"version": "3.5.1",
"author": "smartacephal",
"license": "MIT",
"description": "Downloads images/videos from Coomer/Kemono, Bunkr, GoFile, Reddit-NSFW user posts",
"keywords": [
"downloader",
"cli",
"scraper",
"fetch",
"nsfw",
"simpcity",
"coomer",
"kemono",
"reddit",
"nsfw.xxx",
"bunkr",
"gofile"
],
"repository": {
"type": "git",
"url": "git+https://github.com/smartacephale/coomer-downloader.git"
},
"main": "./src/index.tsx",
"type": "module",
"scripts": {
"start": "tsx ./src/index.ts",
"start-watch": "tsx watch ./src/index.ts",
"build": "node build.js",
"build:start": "npm run build && node ./dist/index.js",
"build:deno": "deno compile -A --output ./build/coomer-downloader src/index.ts --compress"
},
"bin": {
"coomer-downloader": "./dist/index.js"
},
"bugs": {
"url": "https://github.com/smartacephale/coomer-downloader",
"email": "atm.mormon@protonmail.com"
},
"dependencies": {
"@violent-orangutan/ink-picture": "^1.3.6",
"bytes": "3.1.2",
"cheerio": "1.1.0",
"cli-spinners": "^3.3.0",
"http-cookie-agent": "^6.0.0",
"ink": "^6.5.1",
"ix": "^7.0.0",
"react": "^19.2.0",
"rxjs": "^7.8.2",
"tough-cookie": "5.1.2",
"undici": "^6.22.0",
"yargs": "^17.7.2",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/bytes": "^3.1.5",
"@types/node": "^24.10.0",
"@types/react": "^19.2.6",
"@types/yargs": "^17.0.34",
"esbuild": "^0.27.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"pino": "^10.1.0",
"tsx": "^4.20.6"
}
}