package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "@openagents-control/compatibility-layer",
  3. "version": "0.1.0",
  4. "type": "module",
  5. "description": "Compatibility layer for converting OpenAgents Control agents to/from other AI coding tools (Cursor, Claude Code, Windsurf)",
  6. "main": "dist/index.js",
  7. "types": "dist/index.d.ts",
  8. "bin": {
  9. "oac-compat": "dist/cli/index.js"
  10. },
  11. "files": [
  12. "dist",
  13. "README.md",
  14. "LICENSE"
  15. ],
  16. "scripts": {
  17. "build": "tsc",
  18. "build:watch": "tsc --watch",
  19. "test": "vitest run",
  20. "test:watch": "vitest",
  21. "test:coverage": "vitest run --coverage",
  22. "lint": "eslint src --ext .ts",
  23. "lint:fix": "eslint src --ext .ts --fix",
  24. "clean": "rm -rf dist",
  25. "prepublishOnly": "npm run clean && npm run build"
  26. },
  27. "keywords": [
  28. "openagents",
  29. "compatibility",
  30. "cursor",
  31. "claude",
  32. "windsurf",
  33. "ai-tools",
  34. "agent-conversion"
  35. ],
  36. "author": {
  37. "name": "Darren Hinde",
  38. "url": "https://github.com/darrenhinde/OpenAgentsControl"
  39. },
  40. "contributors": [
  41. {
  42. "name": "Alexander Daza",
  43. "email": "dev.alexander.daza@gmail.com",
  44. "url": "https://github.com/devalexanderdaza"
  45. }
  46. ],
  47. "license": "MIT",
  48. "repository": {
  49. "type": "git",
  50. "url": "https://github.com/darrenhinde/OpenAgentsControl.git",
  51. "directory": "packages/compatibility-layer"
  52. },
  53. "engines": {
  54. "node": ">=18.0.0"
  55. },
  56. "dependencies": {
  57. "zod": "^3.23.8",
  58. "js-yaml": "^4.1.0",
  59. "gray-matter": "^4.0.3",
  60. "commander": "^12.1.0",
  61. "chalk": "^5.3.0",
  62. "ora": "^8.0.1"
  63. },
  64. "devDependencies": {
  65. "@types/node": "^20.12.12",
  66. "@types/js-yaml": "^4.0.9",
  67. "typescript": "^5.4.5",
  68. "vitest": "^1.6.0",
  69. "@vitest/coverage-v8": "^1.6.0",
  70. "eslint": "^8.57.0",
  71. "@typescript-eslint/eslint-plugin": "^7.10.0",
  72. "@typescript-eslint/parser": "^7.10.0"
  73. }
  74. }