forked from Rishikant181/Rettiwt-API
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.93 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.93 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
69
70
71
72
73
{
"name": "@youmind-openlab/rettiwt-api",
"version": "1.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "YouMind Open Lab fork - An API for fetching data from TwitterAPI, with browser extension support!",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser/index.d.ts",
"default": "./dist/browser/index.js"
}
},
"bin": {
"rettiwt": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"build:browser": "tsc -p tsconfig.browser.json",
"build:all": "npm run build && npm run build:browser",
"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.14.0"
},
"devDependencies": {
"@types/chrome": "^0.0.300",
"@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"
},
"packageManager": "pnpm@9.15.9"
}