package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "oh-my-opencode-slim",
  3. "version": "0.6.4",
  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. "release:patch": "npm version patch && git push --follow-tags && npm publish",
  48. "release:minor": "npm version minor && git push --follow-tags && npm publish",
  49. "release:major": "npm version major && git push --follow-tags && npm publish"
  50. },
  51. "dependencies": {
  52. "@ast-grep/cli": "^0.40.0",
  53. "@modelcontextprotocol/sdk": "^1.25.1",
  54. "@opencode-ai/plugin": "^1.1.19",
  55. "@opencode-ai/sdk": "^1.1.19",
  56. "vscode-jsonrpc": "^8.2.0",
  57. "vscode-languageserver-protocol": "^3.17.5",
  58. "zod": "^4.1.8"
  59. },
  60. "devDependencies": {
  61. "@biomejs/biome": "2.3.11",
  62. "bun-types": "latest",
  63. "typescript": "^5.7.3"
  64. },
  65. "trustedDependencies": [
  66. "@ast-grep/cli"
  67. ]
  68. }