@wcj/github-rank 22.7.4 → 22.7.7

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.
Files changed (41) hide show
  1. package/README.md +2 -3
  2. package/dist/36kr.json +5006 -1552
  3. package/dist/repos.json +35685 -35685
  4. package/dist/sifou-daily.json +6 -87
  5. package/dist/sifou-monthly.json +91 -91
  6. package/dist/sifou-weekly.json +155 -155
  7. package/dist/toutiao-30.json +77 -77
  8. package/dist/toutiao-7.json +128 -128
  9. package/dist/toutiao-90.json +65 -65
  10. package/dist/trending-daily.json +168 -168
  11. package/dist/trending-monthly.json +161 -161
  12. package/dist/trending-weekly.json +167 -167
  13. package/dist/users.china.json +2715 -2715
  14. package/dist/users.json +3833 -3834
  15. package/package.json +19 -18
  16. package/web/data/36kr.json +5006 -1552
  17. package/web/data/repos.json +35685 -35685
  18. package/web/data/sifou-daily.json +6 -87
  19. package/web/data/sifou-monthly.json +91 -91
  20. package/web/data/sifou-weekly.json +155 -155
  21. package/web/data/toutiao-30.json +77 -77
  22. package/web/data/toutiao-7.json +128 -128
  23. package/web/data/toutiao-90.json +65 -65
  24. package/web/data/trending-daily.json +168 -168
  25. package/web/data/trending-monthly.json +161 -161
  26. package/web/data/trending-weekly.json +167 -167
  27. package/web/data/users.china.json +2715 -2715
  28. package/web/data/users.json +3833 -3834
  29. package/web/index.html +2253 -2252
  30. package/web/repos.html +4337 -4334
  31. package/web/sifou-daily.html +15 -269
  32. package/web/sifou-monthly.html +119 -121
  33. package/web/sifou-weekly.html +144 -146
  34. package/web/toutiao-30.html +111 -111
  35. package/web/toutiao-7.html +101 -101
  36. package/web/toutiao-90.html +95 -95
  37. package/web/trending-monthly.html +160 -162
  38. package/web/trending-weekly.html +168 -162
  39. package/web/trending.html +176 -154
  40. package/web/users.china.html +1982 -1981
  41. package/web/36kr.html +0 -828
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "@wcj/github-rank",
3
- "version": "22.7.4",
3
+ "version": "22.7.7",
4
4
  "description": "Github Users Ranking for China.",
5
5
  "scripts": {
6
6
  "start": "node lib/build.js",
7
7
  "get:toutiao": "node lib/geToutiao.js",
8
8
  "get": "npm run get:users && npm run get:users:china && npm run get:users:info",
9
- "get:o": "npm run get:trending && npm run get:repos && npm run get:sifou && npm run get:36kr && npm run get:toutiao",
9
+ "get:o": "npm run get:trending && npm run get:repos && npm run get:sifou && npm run get:toutiao",
10
10
  "get:users:info": "node lib/getUserInfo.js",
11
- "get:36kr": "node lib/get36Kr.js",
12
11
  "get:sifou": "node lib/getSifou.js",
13
12
  "get:users": "node lib/getUsers.js",
14
13
  "get:users:china": "node lib/getUsersChina.js",
@@ -19,6 +18,7 @@
19
18
  "watch": "tsbb watch --no-esm --disable-babel-option",
20
19
  "build": "tsbb build --no-esm --disable-babel-option"
21
20
  },
21
+ "type": "module",
22
22
  "author": "Kenny Wong <wowohoo@qq.com>",
23
23
  "license": "MIT",
24
24
  "main": "dist/users.json",
@@ -41,20 +41,21 @@
41
41
  "ranking"
42
42
  ],
43
43
  "devDependencies": {
44
- "@octokit/request": "5.6.2",
45
- "@types/cheerio": "0.22.29",
46
- "@types/dotenv": "8.2.0",
47
- "@types/ejs": "3.0.6",
48
- "@types/fs-extra": "9.0.11",
49
- "@types/node": "15.12.2",
50
- "@types/node-fetch": "2.5.12",
51
- "@uiw/formatter": "1.2.4",
52
- "cheerio": "1.0.0-rc.10",
53
- "console-emojis": "1.0.4",
54
- "dotenv": "10.0.0",
55
- "ejs": "3.1.6",
56
- "fs-extra": "10.0.0",
57
- "node-fetch": "2.6.5",
58
- "tsbb": "3.4.4"
44
+ "@babel/plugin-syntax-import-assertions": "^7.18.6",
45
+ "@octokit/request": "~5.6.3",
46
+ "@types/cheerio": "~0.22.31",
47
+ "@types/dotenv": "~8.2.0",
48
+ "@types/ejs": "~3.1.1",
49
+ "@types/fs-extra": "~9.0.13",
50
+ "@types/node": "~18.0.1",
51
+ "@types/node-fetch": "~2.6.2",
52
+ "@uiw/formatter": "~1.3.3",
53
+ "cheerio": "~1.0.0-rc.12",
54
+ "console-emojis": "~1.0.4",
55
+ "dotenv": "~16.0.1",
56
+ "ejs": "~3.1.8",
57
+ "fs-extra": "~10.1.0",
58
+ "node-fetch": "~3.2.6",
59
+ "tsbb": "~3.7.6"
59
60
  }
60
61
  }