package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@github/copilot",
  3. "description": "GitHub Copilot CLI brings the power of Copilot coding agent directly to your terminal.",
  4. "version": "1.0.28",
  5. "license": "SEE LICENSE IN LICENSE.md",
  6. "type": "module",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/github/copilot-cli.git"
  10. },
  11. "bugs": {
  12. "url": "https://github.com/github/copilot-cli/issues"
  13. },
  14. "homepage": "https://github.com/github/copilot-cli/#readme",
  15. "author": "GitHub",
  16. "bin": {
  17. "copilot": "npm-loader.js"
  18. },
  19. "exports": {
  20. "./sdk": {
  21. "types": "./sdk/index.d.ts",
  22. "import": "./sdk/index.js"
  23. }
  24. },
  25. "files": [
  26. "index.js",
  27. "app.js",
  28. "npm-loader.js",
  29. "changelog.json",
  30. "README.md",
  31. "tree-sitter.wasm",
  32. "tree-sitter-bash.wasm",
  33. "tree-sitter-powershell.wasm",
  34. "tree-sitter-typescript.wasm",
  35. "tree-sitter-tsx.wasm",
  36. "tree-sitter-javascript.wasm",
  37. "tree-sitter-python.wasm",
  38. "tree-sitter-go.wasm",
  39. "tree-sitter-rust.wasm",
  40. "tree-sitter-ruby.wasm",
  41. "tree-sitter-java.wasm",
  42. "tree-sitter-c.wasm",
  43. "tree-sitter-cpp.wasm",
  44. "tree-sitter-c_sharp.wasm",
  45. "tree-sitter-json.wasm",
  46. "tree-sitter-html.wasm",
  47. "tree-sitter-css.wasm",
  48. "tree-sitter-php.wasm",
  49. "tree-sitter-scala.wasm",
  50. "queries/**/*",
  51. "prebuilds/**/*",
  52. "sdk/**/*",
  53. "sharp/**/*",
  54. "clipboard/**/*",
  55. "worker/**/*",
  56. "ripgrep/**/*",
  57. "schemas/**/*",
  58. "definitions/**/*",
  59. "builtin-skills/**/*",
  60. "preloads/**/*",
  61. "copilot-sdk/**/*",
  62. "conpty_console_list_agent.js"
  63. ],
  64. "buildMetadata": {
  65. "gitCommit": "2f8f8ad"
  66. },
  67. "optionalDependencies": {
  68. "@github/copilot-linux-x64": "1.0.28",
  69. "@github/copilot-linux-arm64": "1.0.28",
  70. "@github/copilot-darwin-x64": "1.0.28",
  71. "@github/copilot-darwin-arm64": "1.0.28",
  72. "@github/copilot-win32-x64": "1.0.28",
  73. "@github/copilot-win32-arm64": "1.0.28"
  74. }
  75. }