package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "cline",
  3. "version": "1.0.3",
  4. "description": "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more",
  5. "main": "cline-core.js",
  6. "bin": {
  7. "cline": "./bin/cline",
  8. "cline-host": "./bin/cline-host"
  9. },
  10. "man": "./man/cline.1",
  11. "scripts": {
  12. "postinstall": "node postinstall.js"
  13. },
  14. "bundleDependencies": [
  15. "@grpc/grpc-js",
  16. "@grpc/reflection",
  17. "better-sqlite3",
  18. "grpc-health-check",
  19. "open",
  20. "vscode-uri"
  21. ],
  22. "engines": {
  23. "node": ">=20.0.0"
  24. },
  25. "keywords": [
  26. "cline",
  27. "claude",
  28. "dev",
  29. "mcp",
  30. "openrouter",
  31. "coding",
  32. "agent",
  33. "autonomous",
  34. "chatgpt",
  35. "sonnet",
  36. "ai",
  37. "llama",
  38. "cli"
  39. ],
  40. "author": {
  41. "name": "Cline Bot Inc."
  42. },
  43. "license": "Apache-2.0",
  44. "repository": {
  45. "type": "git",
  46. "url": "https://github.com/cline/cline"
  47. },
  48. "homepage": "https://cline.bot",
  49. "bugs": {
  50. "url": "https://github.com/cline/cline/issues"
  51. },
  52. "dependencies": {
  53. "@grpc/grpc-js": "^1.13.3",
  54. "@grpc/reflection": "^1.0.4",
  55. "better-sqlite3": "^12.2.0",
  56. "grpc-health-check": "^2.0.2",
  57. "open": "^10.1.2",
  58. "vscode-uri": "^3.1.0"
  59. },
  60. "os": [
  61. "darwin",
  62. "linux"
  63. ],
  64. "cpu": [
  65. "x64",
  66. "arm64"
  67. ]
  68. }