openpencil/packages/mcp/package.json
2026-05-19 18:10:25 +03:00

48 lines
1 KiB
JSON

{
"name": "@open-pencil/mcp",
"version": "0.12.2",
"license": "MIT",
"type": "module",
"imports": {
"#mcp/*": {
"types": "./src/*.ts",
"bun": "./src/*.ts",
"default": "./dist/*.js"
}
},
"main": "./dist/server.js",
"bin": {
"openpencil-mcp": "./dist/stdio.js",
"openpencil-mcp-http": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bunx tsgo && bunx fix-esm-import-path dist",
"prepublishOnly": "bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-pencil/open-pencil.git",
"directory": "packages/mcp"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@hono/node-server": "^1.19.9",
"@modelcontextprotocol/sdk": "^1.25.2",
"@open-pencil/core": "workspace:*",
"hono": "^4.11.4",
"package-manager-detector": "^1.6.0",
"zod": "^4.3.6",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1"
}
}