@openagentpack/cli 0.0.0-beta.run-29740517091.sha-65ccfac
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +199 -0
- package/README.md +34 -0
- package/dist/bin/agents.d.ts +1 -0
- package/dist/bin/agents.js +24 -0
- package/dist/chunk-W5APGQN3.js +1864 -0
- package/dist/src/program.d.ts +5 -0
- package/dist/src/program.js +6 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@openagentpack/cli",
|
|
3
|
+
"version": "0.0.0-beta.run-29740517091.sha-65ccfac",
|
|
4
|
+
"description": "Open Agent Pack — Declaratively manage AI agent infrastructure",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"ai-agents",
|
|
8
|
+
"infrastructure-as-code",
|
|
9
|
+
"cli",
|
|
10
|
+
"mcp",
|
|
11
|
+
"devops"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://github.com/modelstudioai/OpenAgentPack/tree/main/packages/cli#readme",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/modelstudioai/OpenAgentPack.git",
|
|
17
|
+
"directory": "packages/cli"
|
|
18
|
+
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/modelstudioai/OpenAgentPack/issues"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22"
|
|
24
|
+
},
|
|
25
|
+
"type": "module",
|
|
26
|
+
"main": "./dist/src/program.js",
|
|
27
|
+
"module": "./dist/src/program.js",
|
|
28
|
+
"types": "./dist/src/program.d.ts",
|
|
29
|
+
"exports": {
|
|
30
|
+
".": "./dist/src/program.js",
|
|
31
|
+
"./cli": "./dist/bin/agents.js"
|
|
32
|
+
},
|
|
33
|
+
"bin": {
|
|
34
|
+
"agents": "dist/bin/agents.js"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist",
|
|
38
|
+
"LICENSE"
|
|
39
|
+
],
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public",
|
|
42
|
+
"registry": "https://registry.npmjs.org/"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsup",
|
|
46
|
+
"build:binary": "bun build ./bin/agents.ts --compile --outfile agents",
|
|
47
|
+
"dev": "bun run bin/agents.ts",
|
|
48
|
+
"test": "bun test",
|
|
49
|
+
"typecheck": "tsc --noEmit"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@openagentpack/playground": "0.0.0-beta.run-29740517091.sha-65ccfac",
|
|
53
|
+
"@types/bun": "^1.3.14",
|
|
54
|
+
"typescript": "^6.0.3"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"@openagentpack/sdk": "0.0.0-beta.run-29740517091.sha-65ccfac",
|
|
58
|
+
"@clack/prompts": "^1.5.1",
|
|
59
|
+
"chalk": "^5.6.2",
|
|
60
|
+
"commander": "^14.0.3",
|
|
61
|
+
"yaml": "^2.7.1"
|
|
62
|
+
}
|
|
63
|
+
}
|