Files
crafttable-mcp-client/package.json
T

47 lines
1.2 KiB
JSON

{
"name": "@game-crafttable/mcp-client",
"version": "0.1.3",
"description": "OAuth CLI and stdio bridge for the CraftTable MCP server",
"repository": {
"type": "git",
"url": "https://git.crash.work/cneicy/crafttable-mcp-client.git"
},
"type": "module",
"bin": {
"crafttable-mcp": "dist/cli.js",
"crafttable-mcp-client": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"skills"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx src/cli.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"build": "npm run typecheck && esbuild src/cli.ts --bundle --platform=node --format=esm --packages=external --sourcemap --outfile=dist/cli.js",
"test": "tsx --test test/*.test.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"@napi-rs/keyring": "^1.3.0",
"commander": "^14.0.0",
"cross-spawn": "^7.0.6",
"jsonc-parser": "^3.3.1",
"open": "^10.2.0"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/express": "^5.0.6",
"@types/node": "latest",
"esbuild": "latest",
"express": "^5.2.1",
"tsx": "latest",
"typescript": "latest"
},
"license": "UNLICENSED"
}