package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "opencode",
  4. "private": true,
  5. "type": "module",
  6. "packageManager": "[email protected]",
  7. "scripts": {
  8. "dev": "bun run packages/opencode/src/index.ts",
  9. "typecheck": "bun turbo typecheck",
  10. "prepare": "husky"
  11. },
  12. "workspaces": {
  13. "packages": [
  14. "packages/*",
  15. "packages/console/*",
  16. "packages/sdk/js",
  17. "packages/slack"
  18. ],
  19. "catalog": {
  20. "@types/bun": "1.3.0",
  21. "@hono/zod-validator": "0.4.2",
  22. "@kobalte/core": "0.13.11",
  23. "@types/node": "22.13.9",
  24. "@tsconfig/node22": "22.0.2",
  25. "@tsconfig/bun": "1.0.9",
  26. "@cloudflare/workers-types": "4.20251008.0",
  27. "@openauthjs/openauth": "0.0.0-20250322224806",
  28. "diff": "8.0.2",
  29. "ai": "5.0.8",
  30. "hono": "4.7.10",
  31. "fuzzysort": "3.1.0",
  32. "luxon": "3.6.1",
  33. "typescript": "5.8.2",
  34. "zod": "4.1.8",
  35. "remeda": "2.26.0",
  36. "solid-js": "1.9.9",
  37. "tailwindcss": "4.1.11",
  38. "@tailwindcss/vite": "4.1.11"
  39. }
  40. },
  41. "devDependencies": {
  42. "@tsconfig/bun": "catalog:",
  43. "husky": "9.1.7",
  44. "prettier": "3.6.2",
  45. "sst": "3.17.19",
  46. "turbo": "2.5.6"
  47. },
  48. "dependencies": {
  49. "@opencode-ai/sdk": "workspace:*"
  50. },
  51. "repository": {
  52. "type": "git",
  53. "url": "https://github.com/sst/opencode"
  54. },
  55. "license": "MIT",
  56. "prettier": {
  57. "semi": false,
  58. "printWidth": 120
  59. },
  60. "trustedDependencies": [
  61. "esbuild",
  62. "protobufjs",
  63. "sharp",
  64. "tree-sitter",
  65. "tree-sitter-bash",
  66. "web-tree-sitter"
  67. ],
  68. "patchedDependencies": {
  69. "@solidjs/[email protected]": "patches/@solidjs%[email protected]"
  70. },
  71. "overrides": {
  72. "@types/bun": "catalog:",
  73. "@types/node": "catalog:"
  74. }
  75. }