-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.48 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
98
{
"name": "@ken-jo/agent-connector",
"version": "0.4.100",
"type": "module",
"description": "SDK/runtime for branded MCP packages: declare your server + hooks once, install across the current AI-agent coverage matrix, and collect local-first token telemetry.",
"keywords": [
"mcp",
"model-context-protocol",
"hooks",
"claude-code",
"codex",
"cursor",
"opencode",
"copilot",
"gemini-cli",
"telemetry",
"tokens",
"multi-platform"
],
"license": "Apache-2.0",
"author": "KenJo",
"repository": {
"type": "git",
"url": "git+https://github.com/ken-jo/agent-connector.git"
},
"homepage": "https://agent-connector.ai",
"bugs": {
"url": "https://github.com/ken-jo/agent-connector/issues"
},
"bin": {
"agent-connector": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js"
},
"./sdk": {
"types": "./dist/sdk/index.d.ts",
"import": "./dist/sdk/index.js"
},
"./sdk/test": {
"types": "./dist/sdk/test.d.ts",
"import": "./dist/sdk/test.js"
},
"./cli": {
"types": "./dist/cli/sdk.d.ts",
"import": "./dist/cli/sdk.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"NOTICE"
],
"engines": {
"node": ">=18.17"
},
"workspaces": [
"examples/*"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/cli/index.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:single": "vitest run --pool=forks --poolOptions.forks.singleFork=true --poolOptions.forks.maxForks=1",
"test:watch": "vitest",
"generate:site-capabilities": "node scripts/generate-site-adapter-capabilities.mjs",
"generate:site-verification": "node scripts/generate-site-verification-results.mjs",
"generate:site-release": "node scripts/generate-site-release-status.mjs",
"verify:host": "node scripts/verify-host.mjs",
"prepublishOnly": "npm run typecheck && npm run build"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"fzstd": "^0.1.1",
"gpt-tokenizer": "^2.9.0",
"sql.js": "^1.14.1",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "6.4.3",
"vitest": "^3.2.6"
},
"overrides": {
"esbuild": "0.28.1",
"vite": "6.4.3"
}
}