-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "testglance-action",
"version": "0.1.0",
"private": true,
"description": "TestGlance GitHub Action - Track test suite health over time",
"main": "dist/index.js",
"packageManager": "pnpm@10.33.3",
"scripts": {
"build": "ncc build src/index.ts --out dist --source-map --license licenses.txt",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"postinstall": "node scripts/patch-esm-exports.cjs"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,mjs,js,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@actions/artifact": "^6.2.1",
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/github": "^9.1.0",
"fast-glob": "^3.3.3",
"fast-xml-parser": "^5.7.2",
"handlebars": "^4.7.9"
},
"devDependencies": {
"@commitlint/cli": "^20.5.2",
"@commitlint/config-conventional": "^20.5.0",
"@types/node": "^25.6.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"typescript": "^6.0.0",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}