package.json 574 B

1234567891011121314151617181920212223
  1. {
  2. "name": "@roo-code/ipc",
  3. "description": "IPC server and client for remote Roo Code access.",
  4. "version": "0.0.0",
  5. "type": "module",
  6. "exports": "./src/index.ts",
  7. "scripts": {
  8. "lint": "eslint src --ext=ts --max-warnings=0",
  9. "check-types": "tsc --noEmit",
  10. "clean": "rimraf .turbo"
  11. },
  12. "dependencies": {
  13. "@roo-code/types": "workspace:^",
  14. "node-ipc": "^12.0.0"
  15. },
  16. "devDependencies": {
  17. "@roo-code/config-eslint": "workspace:^",
  18. "@roo-code/config-typescript": "workspace:^",
  19. "@types/node": "20.x",
  20. "@types/node-ipc": "^9.2.3",
  21. "vitest": "^3.2.3"
  22. }
  23. }