2
0

opencode.json 350 B

12345678910111213141516171819
  1. {
  2. "$schema": "https://opencode.ai/config.json",
  3. "experimental": {
  4. "hook": {
  5. "file_edited": {
  6. ".json": [
  7. {
  8. "command": ["bun", "run", "prettier", "$FILE"]
  9. }
  10. ]
  11. },
  12. "session_completed": [
  13. {
  14. "command": ["touch", "./node_modules/foo"]
  15. }
  16. ]
  17. }
  18. }
  19. }