-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 754 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 754 Bytes
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
{
"name": "github-stars",
"version": "1.0.0",
"description": "Collect your starred repos and generate a README",
"type": "module",
"main": "src/index.js",
"scripts": {
"dev": "node --env-file .env src/run.js",
"build": "node src/run.js",
"deploy": "node scripts/deploy.js",
"gen": "node scripts/readme.js",
"serve": "serve site"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"fs-extra": "^11.2.0",
"gh-pages": "^6.3.0",
"gray-matter": "^4.0.3",
"markdown-magic": "^3.4.0",
"ofetch": "^1.4.1",
"p-limit": "^6.2.0",
"safe-await": "^2.0.0"
},
"packageManager": "pnpm@9.15.3",
"devDependencies": {
"@types/node": "^22.15.29",
"serve": "^14.2.4"
}
}