package.json 864 B

12345678910111213141516171819202122232425262728293031323334353637
  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. "type": "module",
  7. "license": "MIT",
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/anomalyco/opencode.git",
  11. "directory": "packages/codemode"
  12. },
  13. "publishConfig": {
  14. "access": "public"
  15. },
  16. "files": [
  17. "dist"
  18. ],
  19. "exports": {
  20. ".": "./src/index.ts"
  21. },
  22. "scripts": {
  23. "build": "bun run script/build.ts",
  24. "typecheck": "tsgo --noEmit",
  25. "test": "bun test"
  26. },
  27. "dependencies": {
  28. "acorn": "8.15.0",
  29. "effect": "catalog:",
  30. "typescript": "catalog:"
  31. },
  32. "devDependencies": {
  33. "@tsconfig/bun": "catalog:",
  34. "@types/bun": "catalog:",
  35. "@typescript/native-preview": "catalog:"
  36. }
  37. }