-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.92 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.92 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
99
100
101
102
{
"name": "@codemcp/knowledge",
"version": "2.2.0",
"description": "A Model Context Protocol server for agentic knowledge guidance with web-based documentation loading and intelligent search instructions",
"type": "module",
"main": "packages/cli/dist/index.js",
"bin": {
"ade-knowledge": "packages/cli/dist/index.js"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@10.32.1",
"files": [
"packages/*/dist/**/*",
"packages/*/package.json",
"README.md",
"LICENSE",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mrsimpson/agentic-knowledge-mcp.git"
},
"scripts": {
"build": "turbo run build",
"pack:local": "node scripts/prepare-local.cjs",
"inspector": "npx @modelcontextprotocol/inspector",
"dev": "turbo run dev --filter=@codemcp/knowledge-core --filter=@codemcp/knowledge-server",
"clean": "turbo run clean:build",
"prepublishOnly": "npm run build",
"lint-staged": "npx lint-staged",
"test": "node scripts/test-summary.js",
"test:run": "node scripts/test-summary.js",
"test:manual": "npm run build && npm run inspector",
"test:e2e": "vitest run test/e2e/",
"test:watch": "turbo run test",
"lint:all": "turbo run --parallel lint",
"lint:fix:all": "turbo run --parallel lint:fix",
"format:check:all": "turbo run --parallel format:check",
"format:all": "turbo run --parallel format:fix",
"typecheck:all": "turbo run --parallel typecheck",
"prepare": "husky",
"clean:build": "turbo run clean:build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.19.1",
"adm-zip": "0.5.16",
"commander": "^12.0.0"
},
"devDependencies": {
"@codemcp/knowledge-content-loader": "workspace:*",
"@codemcp/knowledge-core": "workspace:*",
"@codemcp/knowledge-server": "workspace:*",
"@eslint/js": "^9.34.0",
"@modelcontextprotocol/inspector": "0.16.8",
"@tsconfig/node22": "22.0.2",
"@tsconfig/strictest": "2.0.5",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"oxlint": "1.14.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsup": "^8.0.0",
"turbo": "^2.5.6",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,js,mts,cts,tsx,jsx}": [
"prettier --write",
"oxlint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"keywords": [
"mcp",
"model-context-protocol",
"agentic",
"knowledge",
"guidance",
"search",
"documentation",
"ai",
"assistant",
"web-loading"
],
"author": "Oliver Jägle <github@beimir.net>",
"license": "MIT"
}