package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "oh-my-opencode-slim",
  3. "version": "0.8.3",
  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. "generate-schema": "bun run scripts/generate-schema.ts",
  41. "typecheck": "tsc --noEmit",
  42. "test": "bun test",
  43. "lint": "biome lint .",
  44. "format": "biome format . --write",
  45. "check": "biome check --write .",
  46. "check:ci": "biome check .",
  47. "dev": "bun run build && opencode",
  48. "prepublishOnly": "bun run build",
  49. "release:patch": "npm version patch && git push --follow-tags && npm publish",
  50. "release:minor": "npm version minor && git push --follow-tags && npm publish",
  51. "release:major": "npm version major && git push --follow-tags && npm publish"
  52. },
  53. "dependencies": {
  54. "@ast-grep/cli": "^0.40.0",
  55. "@modelcontextprotocol/sdk": "^1.26.0",
  56. "@opencode-ai/plugin": "^1.2.6",
  57. "@opencode-ai/sdk": "^1.2.6",
  58. "vscode-jsonrpc": "^8.2.0",
  59. "vscode-languageserver-protocol": "^3.17.5",
  60. "zod": "^4.3.6"
  61. },
  62. "devDependencies": {
  63. "@biomejs/biome": "2.4.2",
  64. "bun-types": "1.3.9",
  65. "typescript": "^5.9.3"
  66. },
  67. "trustedDependencies": [
  68. "@ast-grep/cli"
  69. ]
  70. }