-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
91 lines (91 loc) · 2.51 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@the-convocation/twitter-scraper",
"description": "A port of n0madic/twitter-scraper to Node.js.",
"keywords": [
"x",
"twitter",
"scraper",
"crawler"
],
"version": "0.14.1",
"main": "dist/default/cjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"node": {
"import": "./dist/node/esm/index.mjs",
"require": "./dist/node/cjs/index.cjs"
},
"default": {
"import": "./dist/default/esm/index.mjs",
"require": "./dist/default/cjs/index.js"
}
},
"repository": "https://github.com/the-convocation/twitter-scraper.git",
"author": "karashiiro <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]",
"scripts": {
"build": "rimraf dist && rollup -c",
"commit": "cz",
"docs:generate": "typedoc --options typedoc.json",
"docs:deploy": "yarn docs:generate && gh-pages -d docs",
"format": "prettier --write src/**/*.ts",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@sinclair/typebox": "^0.32.20",
"cross-fetch": "^4.0.0-alpha.5",
"headers-polyfill": "^3.1.2",
"json-stable-stringify": "^1.0.2",
"otpauth": "^9.2.2",
"set-cookie-parser": "^2.6.0",
"tough-cookie": "^4.1.2",
"tslib": "^2.5.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@tsconfig/node16": "^16.1.0",
"@types/jest": "^29.5.1",
"@types/json-stable-stringify": "^1.0.34",
"@types/set-cookie-parser": "^2.4.2",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.3.1",
"esbuild": "^0.21.5",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^5.0.0",
"https-proxy-agent": "^7.0.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --cache --fix",
"prettier --write"
]
}
}