-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 774 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 774 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
{
"name": "github-readme-stats-action-fast",
"version": "0.1.0",
"description": "Generate GitHub Readme Stats cards in GitHub Actions",
"type": "module",
"main": "index.js",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"format": "prettier --write .",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@actions/core": "^2.0.1",
"github-readme-stats-fast": "github:pranesh-2005/github-readme-stats-fast"
},
"devDependencies": {
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3"
},
"lint-staged": {
"*.{js,json,md,yml,yaml}": "prettier --write"
},
"engines": {
"node": ">=22"
},
"license": "MIT"
}