-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 KB
/
package.json
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
32
33
34
35
36
{
"name": "git-stars",
"version": "1.0.0",
"description": "I created this list using `stargazed`, a Node.js package that generates this markdown file from my starred repositories, helping me track and organize my discoveries. The automation workflow is handled by GitHub Actions, ensuring the list is always up to date.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node generate-site.js",
"build-local": "node generate-site-local.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KBLLR/git-stars.git"
},
"keywords": [
"archival",
"github",
"stargazed",
"stars"
],
"author": "KBLLR",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@octokit/rest": "^20.0.2",
"axios": "^1.6.7",
"commander": "^12.0.0",
"dotenv": "^16.4.7",
"lodash": "^4.17.21",
"marked": "^12.0.0"
},
"bugs": {
"url": "https://github.com/KBLLR/git-stars/issues"
},
"homepage": "https://github.com/KBLLR/git-stars#readme"
}