-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 969 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 969 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
32
33
34
{
"name": "github-readme-stats-action",
"version": "0.1.0",
"description": "Generate GitHub Readme Stats cards in GitHub Actions",
"type": "module",
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"license": "MIT",
"private": true,
"main": "index.js",
"scripts": {
"test": "vitest",
"prepare": "husky",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:knip": "knip"
},
"dependencies": {
"@actions/core": "^3.0.0",
"github-readme-stats": "github:stats-organization/github-readme-stats"
},
"devDependencies": {
"husky": "9.0.11",
"knip": "6.2.0",
"lint-staged": "16.4.0",
"prettier": "3.8.1",
"vitest": "4.1.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json,jsonc,yaml,yml}": "prettier --write"
},
"engines": {
"node": ">=22"
}
}