package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "oh-my-opencode-slim",
  3. "version": "0.6.2",
  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. "src/skills",
  34. "README.md",
  35. "LICENSE"
  36. ],
  37. "scripts": {
  38. "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",
  39. "typecheck": "tsc --noEmit",
  40. "test": "bun test",
  41. "lint": "biome lint .",
  42. "format": "biome format . --write",
  43. "check": "biome check --write .",
  44. "check:ci": "biome check .",
  45. "dev": "bun run build && opencode",
  46. "prepublishOnly": "bun run build"
  47. },
  48. "dependencies": {
  49. "@ast-grep/cli": "^0.40.0",
  50. "@modelcontextprotocol/sdk": "^1.25.1",
  51. "@opencode-ai/plugin": "^1.1.19",
  52. "@opencode-ai/sdk": "^1.1.19",
  53. "vscode-jsonrpc": "^8.2.0",
  54. "vscode-languageserver-protocol": "^3.17.5",
  55. "zod": "^4.1.8"
  56. },
  57. "devDependencies": {
  58. "@biomejs/biome": "2.3.11",
  59. "bun-types": "latest",
  60. "typescript": "^5.7.3"
  61. },
  62. "trustedDependencies": [
  63. "@ast-grep/cli"
  64. ]
  65. }