package.json 538 B

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