-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1 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
{
"name": "jarpeek",
"version": "0.4.6",
"description": "Context-frugal navigation into JVM dependency sources, for AI agents",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/HumanBean17/jarpeek.git"
},
"keywords": [
"mcp",
"jvm",
"java",
"kotlin",
"dependencies",
"ai-agents"
],
"type": "module",
"bin": {
"jarpeek": "dist/cli/index.js"
},
"engines": {
"node": ">=20.12.0"
},
"files": [
"dist",
"vendor",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"dev": "tsx src/cli/index.ts",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"@clack/prompts": "^1.7.0",
"@modelcontextprotocol/sdk": "^1.21.0",
"commander": "^12.0.0",
"zod": "^3.25.1 || ^4.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.23.12",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}