-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.09 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
{
"name": "@contractsentry/cli",
"version": "0.4.1",
"description": "CLI to catch OpenAPI contract drift in TypeScript and Python before it hits production",
"private": false,
"license": "MIT",
"homepage": "https://github.com/imjayanti/contractsentry#readme",
"keywords": [
"openapi",
"api-testing",
"typescript",
"ai",
"developer-tools",
"linting",
"github-actions",
"contract-testing",
"openapi-validator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/imjayanti/contractsentry.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"bin": {
"csentry": "./dist/bin.js"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --noEmit",
"lint": "biome check src",
"test": "vitest run"
},
"dependencies": {
"@contractsentry/core": "workspace:*",
"commander": "^12.0.0",
"fast-glob": "^3.3.0"
},
"devDependencies": {
"@types/node": "^25.6.2",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}