@wcj/github-rank 22.7.6 → 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 +21336 -21336
  4. package/dist/sifou-daily.json +6 -96
  5. package/dist/sifou-monthly.json +43 -43
  6. package/dist/sifou-weekly.json +113 -113
  7. package/dist/toutiao-30.json +45 -45
  8. package/dist/toutiao-7.json +100 -100
  9. package/dist/toutiao-90.json +35 -35
  10. package/dist/trending-daily.json +167 -167
  11. package/dist/trending-monthly.json +142 -142
  12. package/dist/trending-weekly.json +164 -164
  13. package/dist/users.china.json +1309 -1309
  14. package/dist/users.json +2105 -2106
  15. package/package.json +19 -18
  16. package/web/data/36kr.json +5006 -1552
  17. package/web/data/repos.json +21336 -21336
  18. package/web/data/sifou-daily.json +6 -96
  19. package/web/data/sifou-monthly.json +43 -43
  20. package/web/data/sifou-weekly.json +113 -113
  21. package/web/data/toutiao-30.json +45 -45
  22. package/web/data/toutiao-7.json +100 -100
  23. package/web/data/toutiao-90.json +35 -35
  24. package/web/data/trending-daily.json +167 -167
  25. package/web/data/trending-monthly.json +142 -142
  26. package/web/data/trending-weekly.json +164 -164
  27. package/web/data/users.china.json +1309 -1309
  28. package/web/data/users.json +2105 -2106
  29. package/web/index.html +1123 -1126
  30. package/web/repos.html +2860 -2863
  31. package/web/sifou-daily.html +6 -289
  32. package/web/sifou-monthly.html +73 -76
  33. package/web/sifou-weekly.html +129 -132
  34. package/web/toutiao-30.html +59 -62
  35. package/web/toutiao-7.html +71 -74
  36. package/web/toutiao-90.html +62 -65
  37. package/web/trending-monthly.html +125 -136
  38. package/web/trending-weekly.html +142 -149
  39. package/web/trending.html +148 -147
  40. package/web/users.china.html +696 -699
  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.6",
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
  }