-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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
{
"name": "rettiwt-api",
"version": "6.3.0-alpha.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "An API for fetching data from TwitterAPI, without any rate limits!",
"bin": {
"rettiwt": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"prepare": "tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --max-warnings 0 --fix .",
"lint:check": "eslint --max-warnings 0 .",
"docs": "typedoc --excludePrivate --excludeProtected --excludeInternal src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rishikant181/twitter-api.git"
},
"author": {
"email": "rishikantsahu181@gmail.com",
"name": "Rishikant Sahu"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Rishikant181/Rettiwt-API/issues"
},
"homepage": "https://rishikant181.github.io/Rettiwt-API/",
"engines": {
"node": "^22.21.0"
},
"devDependencies": {
"@types/cookiejar": "^2.1.5",
"@types/jsdom": "^27.0.0",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-tsdoc": "^0.4.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.1",
"typedoc": "^0.27.7",
"typescript": "^5.7.3"
},
"dependencies": {
"axios": "^1.8.4",
"chalk": "^5.4.1",
"commander": "^11.1.0",
"cookiejar": "^2.1.4",
"https-proxy-agent": "^7.0.6",
"jsdom": "^27.2.0",
"node-html-parser": "^7.0.1",
"x-client-transaction-id": "^0.1.9"
}
}