package.json 1.8 KB

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