-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.08 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.08 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
{
"name": "drata-cli",
"version": "0.2.0",
"description": "Unofficial command-line client for Drata's public API.",
"license": "MIT",
"author": "Ethan Troy <63926014+ethanolivertroy@users.noreply.github.com>",
"type": "module",
"bin": {
"drata": "src/cli.mjs"
},
"files": [
".env.example",
"AGENTS.md",
"agents/",
"scripts/",
"src/",
"specs/",
"skills/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ethanolivertroy/drata-cli.git"
},
"bugs": {
"url": "https://github.com/ethanolivertroy/drata-cli/issues"
},
"homepage": "https://github.com/ethanolivertroy/drata-cli#readme",
"keywords": [
"drata",
"cli",
"api",
"openapi",
"grc",
"compliance",
"automation",
"pi-package",
"opencode",
"skills"
],
"publishConfig": {
"access": "public"
},
"pi": {
"skills": [
"./skills"
]
},
"scripts": {
"refresh-specs": "node ./scripts/refresh-specs.mjs",
"test": "node --test"
},
"engines": {
"node": ">=20"
}
}