package.json 626 B

1234567891011121314151617181920212223242526
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/codemode",
  4. "version": "1.18.4",
  5. "description": "Effect-native confined code execution over schema-described tools",
  6. "private": true,
  7. "type": "module",
  8. "license": "MIT",
  9. "exports": {
  10. ".": "./src/index.ts"
  11. },
  12. "scripts": {
  13. "typecheck": "tsgo --noEmit",
  14. "test": "bun test"
  15. },
  16. "dependencies": {
  17. "acorn": "8.15.0",
  18. "effect": "catalog:",
  19. "typescript": "catalog:"
  20. },
  21. "devDependencies": {
  22. "@tsconfig/bun": "catalog:",
  23. "@types/bun": "catalog:",
  24. "@typescript/native-preview": "catalog:"
  25. }
  26. }