-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 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
{
"name": "openapi2agentcontext",
"version": "1.0.0",
"description": "This project makes OpenAPI schemas more digestible for AI agents such as Claude Code and OpenAI Codex.",
"main": "main.ts",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "ts-node main.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run typecheck && npm run lint && npm run format:check",
"fix:all": "tsc && npm run lint:fix && npm run format"
},
"author": "",
"license": "ISC",
"keywords": [
"openapi",
"ai",
"agents",
"documentation",
"typescript"
],
"type": "module",
"dependencies": {
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.0",
"swagger-parser": "^10.0.3"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/swagger-parser": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}