package.json 2.5 KB

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