package.json 981 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": "bun run ./packages/opencode/src/index.ts serve ",
  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.7"
  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. "[email protected]": "patches/[email protected]"
  44. }
  45. }