package.json 932 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.21",
  20. "hono": "4.7.10",
  21. "typescript": "5.8.2",
  22. "zod": "3.25.49"
  23. }
  24. },
  25. "devDependencies": {
  26. "prettier": "3.5.3",
  27. "sst": "3.17.8"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/sst/opencode"
  32. },
  33. "license": "MIT",
  34. "prettier": {
  35. "semi": false,
  36. "printWidth": 120
  37. },
  38. "trustedDependencies": [
  39. "esbuild",
  40. "protobufjs",
  41. "sharp"
  42. ],
  43. "patchedDependencies": {}
  44. }