package.json 333 B

12345678910111213141516
  1. {
  2. "name": "claude-channel-fakechat",
  3. "version": "0.0.1",
  4. "license": "Apache-2.0",
  5. "type": "module",
  6. "bin": "./server.ts",
  7. "scripts": {
  8. "start": "bun install --no-summary && bun server.ts"
  9. },
  10. "dependencies": {
  11. "@modelcontextprotocol/sdk": "^1.0.0"
  12. },
  13. "devDependencies": {
  14. "@types/bun": "^1.3.10"
  15. }
  16. }