forked from casperiv0/update-github-bio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 706 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 706 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
{
"name": "github-auto-bio",
"version": "1.1.0",
"description": "Automatically updates your GitHub bio with your WakaTime stats every 15 minutes",
"license": "MIT",
"scripts": {
"dev": "node esbuild.mjs --watch",
"build": "node esbuild.mjs",
"start": "node dist/index.mjs",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx,.mjs",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,css,json}\" --ignore-path .gitignore"
},
"dependencies": {
"axios": "^0.26.1",
"dotenv": "^16.0.0"
},
"devDependencies": {
"@casper124578/eslint-config": "^3.0.0",
"@types/node": "^17.0.21",
"esbuild": "^0.14.25",
"eslint": "^8.10.0",
"typescript": "^4.6.2"
}
}