-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.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
{
"name": "packforge",
"version": "0.1.0",
"description": "AI Agent Instruction Hub — orchestrates context-aware instruction packs for Cursor, Claude Code, Codex, and other MCP-compatible agents.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"packforge": "./dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"license": "PolyForm-Noncommercial-1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mutigen/packforge.git",
"directory": "apps/mcp-gateway"
},
"keywords": [
"mcp",
"ai-agents",
"instruction-packs",
"claude",
"cursor",
"codex",
"packforge"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"build:publish": "tsup",
"type-check": "tsc --noEmit",
"test": "vitest run",
"start": "node dist/index.js",
"prepublishOnly": "npm run build:publish"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-node": "^0.214.0",
"fastify": "^5.3.2",
"jose": "^5.10.0",
"js-yaml": "^4.1.0",
"lru-cache": "^11.1.0",
"pino": "^9.6.0",
"undici": "^7.28.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@hub/context-analyzer": "*",
"@hub/export-adapters": "*",
"@hub/memory-service": "*",
"@hub/orchestrator": "*",
"@hub/policy-service": "*",
"@hub/shared-types": "*",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.14.0",
"tsup": "^8.5.1",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}