package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "oh-my-opencode-slim",
  3. "version": "0.9.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. "src/skills",
  34. "oh-my-opencode-slim.schema.json",
  35. "README.md",
  36. "LICENSE"
  37. ],
  38. "scripts": {
  39. "build": "bun build src/index.ts --outdir dist --target bun --format esm --packages external && bun build src/cli/index.ts --outdir dist/cli --target bun --format esm --packages external && tsc --emitDeclarationOnly && bun run generate-schema",
  40. "prepare": "bun build src/index.ts --outdir dist --target bun --format esm --external @ast-grep/napi --external @opencode-ai/plugin --external @opencode-ai/sdk",
  41. "contributors:add": "all-contributors add",
  42. "contributors:check": "all-contributors check",
  43. "contributors:generate": "all-contributors generate",
  44. "generate-schema": "bun run scripts/generate-schema.ts",
  45. "typecheck": "tsc --noEmit",
  46. "test": "bun test",
  47. "lint": "biome lint .",
  48. "format": "biome format . --write",
  49. "check": "biome check --write .",
  50. "check:ci": "biome check .",
  51. "dev": "bun run build && opencode",
  52. "prepublishOnly": "bun run build",
  53. "release:patch": "npm version patch && git push --follow-tags && npm publish",
  54. "release:minor": "npm version minor && git push --follow-tags && npm publish",
  55. "release:major": "npm version major && git push --follow-tags && npm publish"
  56. },
  57. "dependencies": {
  58. "@mozilla/readability": "^0.6.0",
  59. "@ast-grep/cli": "^0.40.0",
  60. "@modelcontextprotocol/sdk": "^1.26.0",
  61. "@opencode-ai/plugin": "^1.2.6",
  62. "@opencode-ai/sdk": "^1.2.6",
  63. "jsdom": "^26.1.0",
  64. "lru-cache": "^11.2.2",
  65. "turndown": "^7.2.0",
  66. "vscode-jsonrpc": "^8.2.0",
  67. "vscode-languageserver-protocol": "^3.17.5",
  68. "which": "^6.0.0",
  69. "zod": "^4.3.6"
  70. },
  71. "devDependencies": {
  72. "@biomejs/biome": "2.4.2",
  73. "@types/jsdom": "^21.1.7",
  74. "@types/node": "^24.6.1",
  75. "@types/turndown": "^5.0.5",
  76. "@types/which": "^3.0.4",
  77. "all-contributors-cli": "^6.26.1",
  78. "bun-types": "1.3.9",
  79. "typescript": "^5.9.3"
  80. },
  81. "trustedDependencies": [
  82. "@ast-grep/cli"
  83. ]
  84. }