package.json 958 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 run --filter='*' typecheck",
  10. "stainless": "./scripts/stainless",
  11. "postinstall": "./scripts/hooks"
  12. },
  13. "workspaces": {
  14. "packages": [
  15. "packages/*"
  16. ],
  17. "catalog": {
  18. "@types/node": "22.13.9",
  19. "ai": "5.0.0-beta.33",
  20. "hono": "4.7.10",
  21. "typescript": "5.8.2",
  22. "zod": "3.25.49",
  23. "remeda": "2.26.0"
  24. }
  25. },
  26. "devDependencies": {
  27. "prettier": "3.5.3",
  28. "sst": "3.17.8"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/sst/opencode"
  33. },
  34. "license": "MIT",
  35. "prettier": {
  36. "semi": false,
  37. "printWidth": 120
  38. },
  39. "trustedDependencies": [
  40. "esbuild",
  41. "protobufjs",
  42. "sharp"
  43. ],
  44. "patchedDependencies": {}
  45. }