-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 744 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 744 Bytes
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
{
"name": "jbctl",
"version": "0.2.3",
"description": "CLI bridge for JetBrains IDE MCP Server",
"license": "Apache-2.0",
"type": "module",
"bin": {
"jbctl": "dist/bin.cjs"
},
"files": [
"dist/cli.js",
"dist/bin.cjs"
],
"scripts": {
"start": "bun src/cli.ts",
"test": "bun test",
"build": "bun scripts/build.ts",
"build:all": "bun scripts/build.ts --all",
"build:npm": "bun scripts/build-npm.ts",
"prepublishOnly": "bun run build:npm"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
}
}