-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 861 Bytes
/
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
{
"name": "stat-card",
"version": "1.0.0",
"description": "Generate Github Stats.",
"author": "ctrlCctrlV",
"license": "MIT",
"type": "module",
"exports": "./updater.js",
"scripts": {
"Npm-install": "npm install --save",
"E-build": "esbuild ./updater.js --format=esm --target=esnext --bundle --platform=node --minify --analyze --log-level=debug --tree-shaking=true --external:svgo --outfile=dist/esbuild_updater.js --resolve-extensions=.json,.js,.ts --legal-comments=eof",
"update": "node ./updater.js $GITHUB_owner -info -svgo"
},
"dependencies": {
"@octokit/plugin-paginate-graphql": "^5.2.2",
"@octokit/plugin-retry": "^7.1.1",
"@octokit/plugin-throttling": "^9.3.1",
"@octokit/rest": "^21.0.1",
"handlebars": "^4.7.8"
},
"devDependencies": {
"esbuild": "^0.25.0",
"svgo": "^4.0.0-rc.0"
}
}