| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- "name": "oh-my-opencode-slim",
- "version": "0.9.10",
- "description": "Lightweight agent orchestration plugin for OpenCode - a slimmed-down fork of oh-my-opencode",
- "main": "dist/index.js",
- "types": "dist/index.d.ts",
- "bin": {
- "oh-my-opencode-slim": "./dist/cli/index.js"
- },
- "type": "module",
- "license": "MIT",
- "keywords": [
- "opencode",
- "opencode-plugin",
- "ai",
- "agents",
- "orchestration",
- "llm",
- "claude",
- "gpt",
- "gemini"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/alvinunreal/oh-my-opencode-slim"
- },
- "bugs": {
- "url": "https://github.com/alvinunreal/oh-my-opencode-slim/issues"
- },
- "homepage": "https://github.com/alvinunreal/oh-my-opencode-slim#readme",
- "files": [
- "dist",
- "src/skills",
- "oh-my-opencode-slim.schema.json",
- "README.md",
- "LICENSE"
- ],
- "scripts": {
- "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",
- "prepare": "bun build src/index.ts --outdir dist --target bun --format esm --packages external --external @ast-grep/napi --external @opencode-ai/plugin --external @opencode-ai/sdk",
- "contributors:add": "all-contributors add",
- "contributors:check": "all-contributors check",
- "contributors:generate": "all-contributors generate",
- "generate-schema": "bun run scripts/generate-schema.ts",
- "typecheck": "tsc --noEmit",
- "test": "bun test",
- "lint": "biome lint .",
- "format": "biome format . --write",
- "check": "biome check --write .",
- "check:ci": "biome check .",
- "dev": "bun run build && opencode",
- "prepublishOnly": "bun run build",
- "release:patch": "npm version patch && git push --follow-tags && npm publish",
- "release:minor": "npm version minor && git push --follow-tags && npm publish",
- "release:major": "npm version major && git push --follow-tags && npm publish"
- },
- "dependencies": {
- "@mozilla/readability": "^0.6.0",
- "@ast-grep/cli": "^0.40.0",
- "@modelcontextprotocol/sdk": "^1.26.0",
- "@opencode-ai/plugin": "^1.2.6",
- "@opencode-ai/sdk": "^1.2.6",
- "jsdom": "^26.1.0",
- "lru-cache": "^11.2.2",
- "turndown": "^7.2.0",
- "vscode-jsonrpc": "^8.2.0",
- "vscode-languageserver-protocol": "^3.17.5",
- "which": "^6.0.0",
- "zod": "^4.3.6"
- },
- "devDependencies": {
- "@biomejs/biome": "2.4.2",
- "@types/jsdom": "^21.1.7",
- "@types/node": "^24.6.1",
- "@types/turndown": "^5.0.5",
- "@types/which": "^3.0.4",
- "all-contributors-cli": "^6.26.1",
- "bun-types": "1.3.9",
- "typescript": "^5.9.3"
- },
- "trustedDependencies": [
- "@ast-grep/cli"
- ]
- }
|