-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.4 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": "agentpack-cli",
"version": "1.4.0",
"mcpName": "io.github.ihorponom/agentpack",
"description": "Local task-state ledger for AI coding agents.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ihorponom/agentpack.git"
},
"homepage": "https://github.com/ihorponom/agentpack#readme",
"bugs": {
"url": "https://github.com/ihorponom/agentpack/issues"
},
"bin": {
"agentpack": "dist/src/agentpack.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"mcp:smoke": "npm run build && node scripts/mcp-smoke.mjs",
"smoke": "npm run build && node dist/src/agentpack.js --help",
"test": "npm run build && node --test dist/tests/*.test.js",
"prepack": "npm test"
},
"engines": {
"node": ">=20"
},
"packageManager": "npm@10.9.7",
"keywords": [
"agents",
"ai",
"coding-agents",
"agent-state",
"agent-handoff",
"task-continuity",
"context-engineering",
"mcp",
"mcp-server",
"model-context-protocol",
"claude-code",
"codex",
"cursor",
"developer-tools",
"local-first"
],
"license": "MIT",
"files": [
"dist/src",
"scripts/mcp-smoke.mjs",
"docs",
"README.md",
"SECURITY.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"devDependencies": {
"@types/node": "22.15.3",
"typescript": "5.8.3"
}
}