package.json 908 B

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