-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.54 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
{
"name": "toolsafe",
"version": "0.2.0",
"description": "Lint OpenAPI specs for AI agent safety — detect risky operations, missing guards, destructive endpoints, and schema issues before exposing APIs to LLMs and agents",
"keywords": [
"agent",
"ai",
"api",
"api-safety",
"lint",
"linter",
"llm",
"mcp",
"openapi",
"safety",
"security",
"static-analysis"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/styltsou/toolsafe.git"
},
"bin": {
"toolsafe": "./src/cli/index.ts"
},
"files": [
"src",
"index.ts",
"README.md",
"tsconfig.json"
],
"type": "module",
"scripts": {
"dev": "bun run src/cli/index.ts",
"cli": "bun run src/cli/index.ts",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"examples:generate": "bun run scripts/generate-examples.ts",
"examples:check": "bun run scripts/check-examples.ts",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"prepare": "husky",
"check": "bun run typecheck && bun run lint && bun run format:check",
"test": "bun test"
},
"dependencies": {
"@scalar/openapi-parser": "^0.28.8",
"commander": "^15.0.0",
"picocolors": "^1.1.1",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "latest",
"husky": "^9.1.7",
"oxfmt": "^0.56.0",
"oxlint": "^1.71.0"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"bun": ">=1.2"
}
}