package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@kilocode/plugin",
  4. "version": "7.2.6",
  5. "type": "module",
  6. "license": "MIT",
  7. "scripts": {
  8. "typecheck": "tsgo --noEmit",
  9. "build": "tsc"
  10. },
  11. "exports": {
  12. ".": "./src/index.ts",
  13. "./tool": "./src/tool.ts",
  14. "./tui": "./src/tui.ts"
  15. },
  16. "files": [
  17. "dist"
  18. ],
  19. "dependencies": {
  20. "@kilocode/sdk": "workspace:*",
  21. "zod": "catalog:"
  22. },
  23. "peerDependencies": {
  24. "@opentui/core": ">=0.1.97",
  25. "@opentui/solid": ">=0.1.97"
  26. },
  27. "peerDependenciesMeta": {
  28. "@opentui/core": {
  29. "optional": true
  30. },
  31. "@opentui/solid": {
  32. "optional": true
  33. }
  34. },
  35. "devDependencies": {
  36. "@opentui/core": "0.1.97",
  37. "@opentui/solid": "0.1.97",
  38. "@tsconfig/node22": "catalog:",
  39. "@types/node": "catalog:",
  40. "typescript": "catalog:",
  41. "@typescript/native-preview": "catalog:"
  42. },
  43. "repository": {
  44. "type": "git",
  45. "url": "https://github.com/Kilo-Org/kilocode",
  46. "directory": "packages/plugin"
  47. }
  48. }