-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 1.77 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
{
"name": "twdl",
"description": "Downloads image and video tweets from Twitter",
"version": "2.11.1",
"license": "MIT",
"repository": "github:dogancelik/twdl",
"author": {
"name": "Doğan Çelik",
"email": "[email protected]"
},
"homepage": "https://github.com/dogancelik/twdl",
"keywords": [
"twitter",
"tweet",
"image",
"video",
"downloader"
],
"engines": {
"node": ">=18"
},
"type": "module",
"main": "out/index.js",
"bin": {
"twdl": "out/bin/twdl.js"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npx rimraf out",
"test": "mocha",
"watch": "npm run prepublishOnly && tsc --watch"
},
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^5.0.1",
"cheerio": "^1.0.0-rc.12",
"debug": "^4.3.4",
"exiftool-vendored": "^23.0.0",
"got": "^12.6.1",
"log-symbols": "^5.1.0",
"lru-cache": "^7.14.0",
"merge-options": "^3.0.4",
"mkdirp": "^1.0.4",
"puppeteer": "^22.7.1",
"replace-ext": "^2.0.0",
"tough-cookie": "^4.1.2",
"update-notifier": "^6.0.2",
"yargs": "^17.5.1"
},
"mocha": {
"timeout": 10000,
"extension": [
"ts"
],
"require": "ts-node/register"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/chai": "^4.3.3",
"@types/cheerio": "^0.22.31",
"@types/debug": "^4.1.7",
"@types/mocha": "^10.0.6",
"@types/node": "^18.7.18",
"@types/puppeteer": "^5.4.6",
"@types/tough-cookie": "^4.0.2",
"@types/yargs": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chai": "^4.3.6",
"eslint": "^8.23.1",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}