-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "ref-github-action-package",
"private": true,
"version": "1.0.0",
"description": "Reference implementation for the VibeCode QA GitHub Action Package standard.",
"license": "MIT",
"type": "module",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/vibecodeqa/ref-github-action-package.git"
},
"engines": {
"node": ">=22 <27",
"pnpm": ">=10 <11"
},
"scripts": {
"build": "node scripts/build.mjs",
"lint": "biome check .",
"format": "biome check --write .",
"typecheck": "tsc -p tsconfig.json",
"test": "vitest run",
"validate:action": "node scripts/validate-action-metadata.mjs",
"check:licenses": "node scripts/check-licenses.mjs",
"audit": "pnpm audit --audit-level=high",
"verify": "pnpm lint && pnpm typecheck && pnpm test && pnpm validate:action && pnpm build",
"vcqa": "npx --yes @vibecodeqa/cli --markdown"
},
"dependencies": {
"@actions/core": "3.0.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@types/node": "26.2.0",
"@vitest/coverage-v8": "4.1.10",
"esbuild": "0.25.12",
"typescript": "7.0.2",
"vitest": "4.1.10",
"yaml": "2.9.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@biomejs/biome"
]
}
}