package.json 794 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/schema",
  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/schema"
  11. },
  12. "publishConfig": {
  13. "access": "public"
  14. },
  15. "files": [
  16. "dist"
  17. ],
  18. "exports": {
  19. ".": "./src/index.ts",
  20. "./*": "./src/*.ts"
  21. },
  22. "scripts": {
  23. "build": "bun run script/build.ts",
  24. "typecheck": "tsgo --noEmit"
  25. },
  26. "dependencies": {
  27. "@standard-schema/spec": "catalog:",
  28. "effect": "catalog:"
  29. },
  30. "devDependencies": {
  31. "@tsconfig/bun": "catalog:",
  32. "@types/bun": "catalog:",
  33. "@typescript/native-preview": "catalog:",
  34. "typescript": "catalog:"
  35. }
  36. }