package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "version": "0.0.0",
  4. "name": "opencode",
  5. "type": "module",
  6. "private": true,
  7. "scripts": {
  8. "typecheck": "tsc --noEmit",
  9. "dev": "bun run ./src/index.ts"
  10. },
  11. "bin": {
  12. "opencode": "./bin/opencode"
  13. },
  14. "exports": {
  15. "./*": "./src/*.ts"
  16. },
  17. "devDependencies": {
  18. "@ai-sdk/amazon-bedrock": "2.2.10",
  19. "@ai-sdk/anthropic": "1.2.12",
  20. "@tsconfig/bun": "1.0.7",
  21. "@types/bun": "latest",
  22. "@types/turndown": "5.0.5",
  23. "@types/yargs": "17.0.33",
  24. "typescript": "catalog:",
  25. "zod-to-json-schema": "3.24.5"
  26. },
  27. "dependencies": {
  28. "@clack/prompts": "0.11.0",
  29. "@flystorage/file-storage": "1.1.0",
  30. "@flystorage/local-fs": "1.1.0",
  31. "@hono/zod-validator": "0.5.0",
  32. "@openauthjs/openauth": "0.4.3",
  33. "@standard-schema/spec": "1.0.0",
  34. "ai": "catalog:",
  35. "decimal.js": "10.5.0",
  36. "diff": "8.0.2",
  37. "env-paths": "3.0.0",
  38. "hono": "4.7.10",
  39. "hono-openapi": "0.4.8",
  40. "open": "10.1.2",
  41. "remeda": "2.22.3",
  42. "ts-lsp-client": "1.0.3",
  43. "turndown": "7.2.0",
  44. "vscode-jsonrpc": "8.2.1",
  45. "vscode-languageclient": "8",
  46. "xdg-basedir": "5.1.0",
  47. "yargs": "18.0.0",
  48. "zod": "catalog:",
  49. "zod-openapi": "4.2.4",
  50. "zod-validation-error": "3.5.2"
  51. }
  52. }