| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- {
- "name": "oh-my-opencode-slim",
- "version": "2.2.5",
- "description": "Lightweight agent orchestration plugin for OpenCode - a slimmed-down fork of oh-my-opencode",
- "main": "dist/index.js",
- "types": "dist/index.d.ts",
- "exports": {
- ".": {
- "import": "./dist/index.js",
- "types": "./dist/index.d.ts"
- },
- "./tui": {
- "import": "./dist/tui.js",
- "types": "./dist/tui.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/companion/companion-manifest.json",
- "src/skills",
- "oh-my-opencode-slim.schema.json",
- "README.md",
- "README.zh-CN.md",
- "README.ja-JP.md",
- "README.ko-KR.md",
- "LICENSE"
- ],
- "scripts": {
- "clean:dist": "bun -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true })\"",
- "build:plugin": "bun build src/index.ts src/tui.ts --outdir dist --target node --format esm --external @ast-grep/napi --external @opencode-ai/plugin --external @opencode-ai/plugin/* --external @opencode-ai/sdk --external @opencode-ai/sdk/* --external @opentui/core --external @opentui/solid --external jsdom --external zod",
- "build:cli": "bun build src/cli/index.ts --outdir dist/cli --target node --format esm --external @ast-grep/napi --external @opencode-ai/plugin --external @opencode-ai/plugin/* --external @opencode-ai/sdk --external @opencode-ai/sdk/* --external jsdom --external zod",
- "build": "bun run clean:dist && bun run build:plugin && bun run build:cli && tsc --emitDeclarationOnly && bun run generate-schema",
- "prepare": "bun run build",
- "contributors:add": "all-contributors add",
- "contributors:check": "all-contributors check",
- "contributors:generate": "all-contributors generate",
- "generate-schema": "bun run scripts/generate-schema.ts",
- "verify:release": "bun run scripts/verify-release-artifact.ts",
- "verify:host-smoke": "bun run scripts/verify-opencode-host-smoke.ts",
- "verify:cache-stability": "bun run scripts/verify-opencode-cache-stability.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",
- "release:beta": "npm version premajor --preid beta && git push --follow-tags && npm publish --tag beta",
- "release:beta:next": "npm version prerelease --preid beta && git push --follow-tags && npm publish --tag beta"
- },
- "dependencies": {
- "@ast-grep/cli": "^0.44.1",
- "@modelcontextprotocol/sdk": "^1.29.0",
- "@mozilla/readability": "^0.6.0",
- "@opencode-ai/plugin": "^1.3.17",
- "@opencode-ai/sdk": "^1.3.17",
- "jsdom": "^29.0.0",
- "lru-cache": "^11.5.2",
- "turndown": "^7.2.4"
- },
- "optionalDependencies": {
- "@opentui/solid": "^0.1.97"
- },
- "devDependencies": {
- "@biomejs/biome": "2.5.4",
- "@types/jsdom": "28",
- "@types/node": "^26.1.1",
- "@types/turndown": "^5.0.6",
- "all-contributors-cli": "^6.26.1",
- "bun-types": "^1.3.14",
- "typescript": "7.0",
- "zod": "^4.4.3"
- },
- "peerDependencies": {
- "zod": "^4.0.0"
- },
- "trustedDependencies": [
- "@ast-grep/cli"
- ]
- }
|