-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.67 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@amittell/agentcli",
"version": "0.5.0",
"description": "Control plane for governed agent and CLI workflows with portable manifests, identity, approvals, and evidence.",
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./cli": "./src/cli.js",
"./jsonrpc": "./src/jsonrpc.js",
"./schema": "./src/schema.js",
"./targets": "./src/targets.js",
"./shell": "./src/shell.js",
"./validate": "./src/validate.js",
"./compile/standalone": "./src/compiler/standalone.js",
"./compile/openclaw-scheduler": "./src/compiler/openclaw-scheduler.js",
"./apply": "./src/apply.js",
"./capabilities": "./src/capabilities.js",
"./shorthand": "./src/shorthand.js",
"./inspect": "./src/inspect.js",
"./handoff": "./src/handoff/index.js",
"./authorization-proof": "./src/authorization-proof/index.js",
"./authorization-proof/jwt": "./src/authorization-proof/jwt.js",
"./authorization-proof/detached-signature": "./src/authorization-proof/detached-signature.js",
"./authorization-proof/certificate": "./src/authorization-proof/certificate.js",
"./evidence": "./src/evidence/index.js",
"./evidence/payload": "./src/evidence/payload.js",
"./evidence/ssh": "./src/evidence/ssh.js",
"./home": "./src/home.js",
"./describe": "./src/describe.js",
"./sanitize": "./src/sanitize.js",
"./fields": "./src/fields.js",
"./io": "./src/io.js"
},
"bin": {
"agentcli": "bin/agentcli.js"
},
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"test": "node --test",
"lint": "eslint . --max-warnings=0",
"verify:package": "node scripts/verify-package.mjs"
},
"files": [
"bin",
"docs",
"!docs/superpowers",
"examples",
"fixtures",
"skills",
"scripts/verify-package.mjs",
"src",
"AGENTS.md",
"CONTEXT.md",
"MANIFEST-QUICK-REF.md",
"CHANGELOG.md",
"README.md",
"LICENSE",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"SECURITY.md"
],
"keywords": [
"agent",
"cli",
"workflow",
"scheduler",
"manifest",
"json-rpc",
"automation",
"orchestration"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/amittell/agentcli.git"
},
"bugs": {
"url": "https://github.com/amittell/agentcli/issues"
},
"homepage": "https://github.com/amittell/agentcli#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2",
"globals": "^17.4.0"
},
"overrides": {
"brace-expansion": "^5.0.6",
"flatted": "^3.4.2"
}
}