-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.26 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
{
"name": "agent-quality-gate",
"version": "0.3.5",
"private": true,
"type": "module",
"packageManager": "bun@1.3.14",
"description": "Locked Oxlint and Fallow quality gate for AI-assisted TypeScript and JavaScript workflows",
"license": "MIT",
"author": "greenhost87",
"repository": {
"type": "git",
"url": "https://github.com/greenhost87/agent-quality-gate.git"
},
"homepage": "https://github.com/greenhost87/agent-quality-gate",
"bugs": {
"url": "https://github.com/greenhost87/agent-quality-gate/issues"
},
"keywords": [
"agent-quality-gate",
"ai",
"quality-gate",
"verify",
"bun",
"typescript",
"vibe-coding"
],
"scripts": {
"build:release": "bun ./scripts/build-release-package.ts",
"generate-agent-guide": "bun ./bin/generate-agent-guide.ts",
"verify": "bun ./bin/verify.ts",
"test": "bun run build:release && bun test --timeout 30000"
},
"engines": {
"bun": ">=1.3.14",
"node": ">=24.19.0"
},
"devDependencies": {
"@types/bun": "1.3.14",
"@types/node": "24.13.3",
"fallow": "3.14.0",
"oxlint": "1.77.0",
"oxlint-plugin-eslint": "1.77.0",
"oxlint-tsgolint": "7.0.2001"
},
"overrides": {
"@types/node": "24.13.3"
},
"trustedDependencies": []
}