1
0

package.json 772 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/protocol",
  4. "version": "1.17.11",
  5. "type": "module",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/anomalyco/opencode.git",
  10. "directory": "packages/protocol"
  11. },
  12. "publishConfig": {
  13. "access": "public"
  14. },
  15. "files": [
  16. "dist"
  17. ],
  18. "exports": {
  19. "./*": "./src/*.ts"
  20. },
  21. "scripts": {
  22. "build": "bun run script/build.ts",
  23. "typecheck": "tsgo --noEmit"
  24. },
  25. "dependencies": {
  26. "@opencode-ai/schema": "workspace:*",
  27. "effect": "catalog:"
  28. },
  29. "devDependencies": {
  30. "@tsconfig/bun": "catalog:",
  31. "@types/bun": "catalog:",
  32. "@typescript/native-preview": "catalog:",
  33. "typescript": "catalog:"
  34. }
  35. }