package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. "exports": {
  12. "./*": [
  13. "./src/*.ts",
  14. "./src/*/index.ts"
  15. ]
  16. },
  17. "devDependencies": {
  18. "@tsconfig/bun": "1.0.7",
  19. "@types/bun": "latest",
  20. "@types/turndown": "5.0.5",
  21. "@types/yargs": "17.0.33",
  22. "typescript": "catalog:",
  23. "zod-to-json-schema": "3.24.5"
  24. },
  25. "dependencies": {
  26. "@clack/prompts": "0.11.0",
  27. "@flystorage/file-storage": "1.1.0",
  28. "@flystorage/local-fs": "1.1.0",
  29. "@hono/zod-validator": "0.5.0",
  30. "@openauthjs/openauth": "0.4.3",
  31. "@standard-schema/spec": "1.0.0",
  32. "ai": "catalog:",
  33. "decimal.js": "10.5.0",
  34. "diff": "8.0.2",
  35. "env-paths": "3.0.0",
  36. "hono": "4.7.10",
  37. "hono-openapi": "0.4.8",
  38. "open": "10.1.2",
  39. "remeda": "2.22.3",
  40. "ts-lsp-client": "1.0.3",
  41. "turndown": "7.2.0",
  42. "vscode-jsonrpc": "8.2.1",
  43. "vscode-languageclient": "8",
  44. "xdg-basedir": "5.1.0",
  45. "yargs": "18.0.0",
  46. "zod": "catalog:",
  47. "zod-openapi": "4.2.4"
  48. }
  49. }