-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.43 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
{
"name": "@openagentpack/cli",
"version": "0.7.2",
"description": "Open Agent Pack — Declaratively manage AI agent infrastructure",
"license": "Apache-2.0",
"keywords": [
"ai-agents",
"infrastructure-as-code",
"cli",
"mcp",
"devops"
],
"homepage": "https://github.com/modelstudioai/OpenAgentPack/tree/main/packages/cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/modelstudioai/OpenAgentPack.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/modelstudioai/OpenAgentPack/issues"
},
"engines": {
"node": ">=22"
},
"type": "module",
"main": "./dist/src/program.js",
"module": "./dist/src/program.js",
"types": "./dist/src/program.d.ts",
"exports": {
".": "./dist/src/program.js",
"./cli": "./dist/bin/agents.js"
},
"bin": {
"agents": "dist/bin/agents.js"
},
"files": [
"dist",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsup",
"build:binary": "bun build ./bin/agents.ts --compile --outfile agents",
"dev": "bun run bin/agents.ts",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@openagentpack/playground": "workspace:*",
"@types/bun": "^1.3.14",
"typescript": "^6.0.3"
},
"dependencies": {
"@openagentpack/sdk": "workspace:*",
"@clack/prompts": "^1.5.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"yaml": "^2.7.1"
}
}