@the-convocation/twitter-scraper 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/dist/api.d.ts +5 -3
- package/dist/api.d.ts.map +1 -1
- package/dist/api.js +14 -6
- package/dist/api.js.map +1 -1
- package/dist/auth-user.d.ts +15 -0
- package/dist/auth-user.d.ts.map +1 -0
- package/dist/auth-user.js +216 -0
- package/dist/auth-user.js.map +1 -0
- package/dist/auth.d.ts +45 -25
- package/dist/auth.d.ts.map +1 -1
- package/dist/auth.js +28 -43
- package/dist/auth.js.map +1 -1
- package/dist/errors.d.ts +6 -0
- package/dist/errors.d.ts.map +1 -0
- package/dist/errors.js +11 -0
- package/dist/errors.js.map +1 -0
- package/dist/profile.d.ts +3 -3
- package/dist/profile.d.ts.map +1 -1
- package/dist/profile.js +1 -1
- package/dist/profile.js.map +1 -1
- package/dist/scraper.d.ts +50 -4
- package/dist/scraper.d.ts.map +1 -1
- package/dist/scraper.js +92 -8
- package/dist/scraper.js.map +1 -1
- package/dist/search.d.ts +5 -5
- package/dist/search.d.ts.map +1 -1
- package/dist/search.js +5 -0
- package/dist/search.js.map +1 -1
- package/dist/timeline-async.d.ts +2 -2
- package/dist/timeline-async.d.ts.map +1 -1
- package/dist/timeline.d.ts +19 -1
- package/dist/timeline.d.ts.map +1 -1
- package/dist/timeline.js +146 -100
- package/dist/timeline.js.map +1 -1
- package/dist/trends.d.ts +2 -2
- package/dist/trends.d.ts.map +1 -1
- package/dist/trends.js.map +1 -1
- package/dist/tweets.d.ts +19 -5
- package/dist/tweets.d.ts.map +1 -1
- package/dist/tweets.js +58 -10
- package/dist/tweets.js.map +1 -1
- package/package.json +21 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@the-convocation/twitter-scraper",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"main": "dist/_module.js",
|
|
5
5
|
"repository": "https://github.com/the-convocation/twitter-scraper.git",
|
|
6
6
|
"author": "karashiiro <49822414+karashiiro@users.noreply.github.com>",
|
|
@@ -15,28 +15,29 @@
|
|
|
15
15
|
"test": "jest"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"got": "^
|
|
19
|
-
"
|
|
20
|
-
"tslib": "^2.
|
|
18
|
+
"got-scraping": "^3.2.13",
|
|
19
|
+
"tough-cookie": "^4.1.2",
|
|
20
|
+
"tslib": "^2.5.2"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@commitlint/cli": "^17.
|
|
24
|
-
"@commitlint/config-conventional": "^17.
|
|
25
|
-
"@types/jest": "^
|
|
26
|
-
"@
|
|
27
|
-
"@typescript-eslint/
|
|
23
|
+
"@commitlint/cli": "^17.6.3",
|
|
24
|
+
"@commitlint/config-conventional": "^17.6.3",
|
|
25
|
+
"@types/jest": "^29.5.1",
|
|
26
|
+
"@types/tough-cookie": "^4.0.2",
|
|
27
|
+
"@typescript-eslint/eslint-plugin": "^5.59.7",
|
|
28
|
+
"@typescript-eslint/parser": "^5.59.7",
|
|
28
29
|
"cz-conventional-changelog": "^3.3.0",
|
|
29
|
-
"eslint": "^8.
|
|
30
|
-
"eslint-config-prettier": "^8.
|
|
31
|
-
"eslint-plugin-prettier": "^4.
|
|
32
|
-
"gh-pages": "^
|
|
33
|
-
"husky": "^8.0.
|
|
34
|
-
"jest": "^
|
|
35
|
-
"lint-staged": "^
|
|
36
|
-
"prettier": "^2.
|
|
37
|
-
"ts-jest": "^
|
|
38
|
-
"typedoc": "^0.
|
|
39
|
-
"typescript": "^
|
|
30
|
+
"eslint": "^8.41.0",
|
|
31
|
+
"eslint-config-prettier": "^8.8.0",
|
|
32
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
33
|
+
"gh-pages": "^5.0.0",
|
|
34
|
+
"husky": "^8.0.3",
|
|
35
|
+
"jest": "^29.5.0",
|
|
36
|
+
"lint-staged": "^13.2.2",
|
|
37
|
+
"prettier": "^2.8.8",
|
|
38
|
+
"ts-jest": "^29.1.0",
|
|
39
|
+
"typedoc": "^0.24.7",
|
|
40
|
+
"typescript": "^5.0.4"
|
|
40
41
|
},
|
|
41
42
|
"config": {
|
|
42
43
|
"commitizen": {
|