package.json 618 B

1234567891011121314151617181920212223242526
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/cli",
  4. "version": "1.15.13",
  5. "private": true,
  6. "type": "module",
  7. "license": "MIT",
  8. "bin": {
  9. "opencode": "./src/index.ts"
  10. },
  11. "scripts": {
  12. "build": "bun run script/build.ts",
  13. "dev": "bun run src/index.ts",
  14. "typecheck": "tsgo --noEmit"
  15. },
  16. "dependencies": {
  17. "@effect/platform-node": "catalog:",
  18. "@opencode-ai/core": "workspace:*",
  19. "effect": "catalog:"
  20. },
  21. "devDependencies": {
  22. "@tsconfig/bun": "catalog:",
  23. "@types/bun": "catalog:",
  24. "@typescript/native-preview": "catalog:"
  25. }
  26. }