package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "oh-my-opencode-slim",
  3. "version": "0.5.6",
  4. "description": "Lightweight agent orchestration plugin for OpenCode - a slimmed-down fork of oh-my-opencode",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "bin": {
  8. "oh-my-opencode-slim": "./dist/cli/index.js"
  9. },
  10. "type": "module",
  11. "license": "MIT",
  12. "keywords": [
  13. "opencode",
  14. "opencode-plugin",
  15. "ai",
  16. "agents",
  17. "orchestration",
  18. "llm",
  19. "claude",
  20. "gpt",
  21. "gemini"
  22. ],
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/alvinunreal/oh-my-opencode-slim"
  26. },
  27. "bugs": {
  28. "url": "https://github.com/alvinunreal/oh-my-opencode-slim/issues"
  29. },
  30. "homepage": "https://github.com/alvinunreal/oh-my-opencode-slim#readme",
  31. "files": [
  32. "dist",
  33. "README.md",
  34. "LICENSE"
  35. ],
  36. "scripts": {
  37. "build": "bun build src/index.ts --outdir dist --target bun --format esm && bun build src/cli/index.ts --outdir dist/cli --target bun --format esm && tsc --emitDeclarationOnly",
  38. "typecheck": "tsc --noEmit",
  39. "test": "bun test",
  40. "lint": "biome lint .",
  41. "format": "biome format . --write",
  42. "check": "biome check --write .",
  43. "check:ci": "biome check .",
  44. "dev": "bun run build && opencode",
  45. "prepublishOnly": "bun run build"
  46. },
  47. "dependencies": {
  48. "@ast-grep/cli": "^0.40.0",
  49. "@modelcontextprotocol/sdk": "^1.25.1",
  50. "@opencode-ai/plugin": "^1.1.19",
  51. "@opencode-ai/sdk": "^1.1.19",
  52. "hash-wasm": "^4.12.0",
  53. "ignore": "^7.0.5",
  54. "vscode-jsonrpc": "^8.2.0",
  55. "vscode-languageserver-protocol": "^3.17.5",
  56. "yaml": "^2.8.2",
  57. "zod": "^4.1.8"
  58. },
  59. "devDependencies": {
  60. "@biomejs/biome": "2.3.11",
  61. "bun-types": "latest",
  62. "typescript": "^5.7.3"
  63. },
  64. "trustedDependencies": [
  65. "@ast-grep/cli"
  66. ]
  67. }