@wcj/github-rank 23.8.31 → 23.9.1
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 +1 -1
- package/dist/repos.json +19963 -19962
- package/dist/trending-daily.json +190 -190
- package/dist/trending-monthly.json +165 -165
- package/dist/trending-weekly.json +152 -152
- package/dist/users.china.json +1492 -1457
- package/dist/users.json +5564 -5564
- package/package.json +7 -9
- package/web/data/repos.json +19963 -19962
- package/web/data/trending-daily.json +190 -190
- package/web/data/trending-monthly.json +165 -165
- package/web/data/trending-weekly.json +152 -152
- package/web/data/users.china.json +1492 -1457
- package/web/data/users.json +5564 -5564
- package/web/index.html +31006 -31006
- package/web/repos.html +2646 -2642
- package/web/trending-monthly.html +929 -929
- package/web/trending-weekly.html +929 -925
- package/web/trending.html +925 -933
- package/web/users.china.html +17430 -17397
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wcj/github-rank",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.9.1",
|
|
4
4
|
"description": "Github Users Ranking for China.",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"start": "
|
|
6
|
+
"start": "ejsc \"template/*.ejs\" -o web",
|
|
7
7
|
"get": "npm run get:users && npm run get:users:china && npm run get:users:info",
|
|
8
8
|
"get:o": "npm run get:trending && npm run get:repos",
|
|
9
9
|
"get:users:info": "node lib/getUserInfo.js",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"get:trending": "node lib/getTrending.js",
|
|
14
14
|
"prepare": "npm run build",
|
|
15
15
|
"dev": "npm run watch",
|
|
16
|
-
"watch": "tsbb watch src/*.ts
|
|
17
|
-
"build": "tsbb build src/*.ts
|
|
16
|
+
"watch": "tsbb watch src/*.ts",
|
|
17
|
+
"build": "tsbb build src/*.ts"
|
|
18
18
|
},
|
|
19
19
|
"type": "module",
|
|
20
20
|
"author": "Kenny Wong <wowohoo@qq.com>",
|
|
@@ -39,18 +39,16 @@
|
|
|
39
39
|
"ranking"
|
|
40
40
|
],
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@
|
|
43
|
-
"@octokit/request": "~8.0.0",
|
|
42
|
+
"@octokit/request": "~8.1.0",
|
|
44
43
|
"@types/cheerio": "~0.22.31",
|
|
45
44
|
"@types/dotenv": "~8.2.0",
|
|
46
|
-
"@types/ejs": "~3.1.1",
|
|
47
45
|
"@types/fs-extra": "~11.0.0",
|
|
48
46
|
"@types/node-fetch": "~2.6.2",
|
|
49
47
|
"@uiw/formatter": "^2.0.2",
|
|
48
|
+
"@wcj/ejs-cli": "^1.1.3",
|
|
50
49
|
"cheerio": "~1.0.0-rc.12",
|
|
51
50
|
"console-emojis": "~2.0.0",
|
|
52
|
-
"dotenv": "~16.0
|
|
53
|
-
"ejs": "^3.1.9",
|
|
51
|
+
"dotenv": "~16.3.0",
|
|
54
52
|
"fs-extra": "^11.1.1",
|
|
55
53
|
"node-fetch": "^3.3.1",
|
|
56
54
|
"tsbb": "^4.1.4"
|