-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.03 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@nizos/probity",
"version": "1.10.0",
"description": "TDD enforcement and guardrails for Claude Code, Codex, and GitHub Copilot CLI.",
"license": "MIT",
"author": "Nizar Selander",
"repository": {
"type": "git",
"url": "git+https://github.com/nizos/probity.git"
},
"bugs": "https://github.com/nizos/probity/issues",
"homepage": "https://github.com/nizos/probity#readme",
"keywords": [
"claude-code",
"codex",
"github-copilot",
"coding-agent",
"hooks",
"tdd",
"policy",
"guardrails"
],
"type": "module",
"bin": {
"probity": "dist/bin.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
},
"./rules": {
"types": "./dist/rules/index.d.ts",
"default": "./dist/rules/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.build.json && chmod +x dist/bin.js",
"pretest": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"checks": "npm run lint:check && npm run format:check && npm run typecheck && npm test",
"prepare": "husky",
"prepublishOnly": "test -f dist/bin.js"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,css,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@ast-grep/lang-csharp": "^0.0.6",
"@ast-grep/lang-php": "^0.0.7",
"@ast-grep/lang-python": "^0.0.6",
"@ast-grep/lang-ruby": "^0.0.7",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@nizos/probity": "1.10.0",
"@types/node": "^25.6.0",
"@types/picomatch": "^4.0.3",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"fs-fixture": "^2.13.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.4"
},
"peerDependencies": {
"@ast-grep/lang-csharp": "*",
"@ast-grep/lang-php": "*",
"@ast-grep/lang-python": "*",
"@ast-grep/lang-ruby": "*"
},
"peerDependenciesMeta": {
"@ast-grep/lang-csharp": {
"optional": true
},
"@ast-grep/lang-php": {
"optional": true
},
"@ast-grep/lang-python": {
"optional": true
},
"@ast-grep/lang-ruby": {
"optional": true
}
},
"overrides": {
"@modelcontextprotocol/sdk": {
"@hono/node-server": "^2.0.5"
}
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.204",
"@ast-grep/napi": "^0.42.1",
"@github/copilot-sdk": "1.0.5",
"@openai/codex-sdk": "0.143.0",
"jiti": "^2.6.1",
"picomatch": "^4.0.4",
"zod": "^4.3.6"
}
}