-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 855 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 855 Bytes
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": "@openagentsecurity/oas",
"version": "0.1.0",
"description": "Security gates for AI-generated code changes.",
"license": "MIT",
"type": "module",
"bin": {
"oas": "./dist/cli.js"
},
"files": [
"dist",
"rules",
"skills",
"templates",
"standards",
"agents",
"integrations",
"locales",
"imgs",
"action.yml",
"README*.md",
"LICENSE",
"SECURITY.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"commander": "^14.0.2",
"minimatch": "^10.1.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/node": "^24.10.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=20"
}
}