This repository was archived by the owner on Mar 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.11 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.11 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
{
"name": "@sterlingchin/clara",
"version": "0.1.0",
"description": "AI Agent API Readiness Analyzer - Ensure your APIs are ready for AI agents to discover, understand, and self-heal from errors",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"clara": "dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli/index.js",
"clara": "node dist/cli/index.js",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"api",
"openapi",
"swagger",
"ai",
"agent",
"analyzer",
"linter",
"postman",
"rest",
"validation"
],
"author": "Postman Developer Relations",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Postman-Devrel/clara.git"
},
"bugs": {
"url": "https://github.com/Postman-Devrel/clara/issues"
},
"homepage": "https://github.com/Postman-Devrel/clara#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"openapi-types": "^12.1.3",
"ora": "^8.1.1",
"yaml": "^2.6.1"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"eslint": "^9.16.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}