-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.18 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "contribkit",
"version": "0.1.0-alpha.7",
"private": false,
"description": "Checks a repository's contribution rules before an agent or human opens a pull request.",
"author": {
"name": "daichunghy",
"url": "https://github.com/daichunghy"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"types": "./dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/daichunghy/contribkit.git"
},
"bugs": {
"url": "https://github.com/daichunghy/contribkit/issues"
},
"homepage": "https://github.com/daichunghy/contribkit#readme",
"engines": {
"node": ">=22"
},
"keywords": [
"pull-request",
"preflight",
"claude-code",
"contributing",
"codeowners",
"developer-tools"
],
"type": "module",
"bin": {
"contribkit": "dist/src/cli.js"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"files": [
"dist",
"schemas",
"adapters/*/adapter.json",
"adapters/*/README.md",
"adapters/*/hints.yml",
".claude-plugin",
"hooks",
"skills",
".mcp.json",
"README.md",
"LICENSE",
"docs/CHANGELOG.md",
"docs/THREAT_MODEL.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"first-use": "npm run build && node scripts/first-use-smoke.mjs --repo . --base HEAD --run-tests",
"prepack": "npm run build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"check:package": "node scripts/check-package-surface.mjs",
"check:release-candidate": "node scripts/check-release-candidate.mjs",
"check:clean-room": "node scripts/check-clean-room.mjs",
"check:agent-contract": "node scripts/check-agent-contract.mjs",
"agent-eval": "node scripts/run-agent-eval.mjs",
"verify": "npm run typecheck && npm run test && npm run build && npm run check:package && npm run check:release-candidate && npm run check:clean-room && npm run check:agent-contract"
},
"dependencies": {
"ajv": "^8.17.1",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/node": "^26.4.1",
"typescript": "^5.8.3",
"vitest": "^4.1.11"
}
}