{
    "name": "sk-claudecode",
    "version": "1.1.0",
    "description": "Unified agent and skill system for Claude Code - Standalone with HUD",
    "type": "module",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "exports": {
        ".": {
            "import": "./dist/index.js",
            "types": "./dist/index.d.ts"
        }
    },
    "bin": {
        "sk-claudecode": "dist/cli/index.js",
        "skc": "dist/cli/index.js",
        "skc-analytics": "dist/cli/analytics.js"
    },
    "files": [
        "dist",
        "agents",
        "bridge",
        "commands",
        "hooks",
        "scripts",
        "skills",
        "templates",
        ".claude-plugin",
        ".mcp.json",
        "README.md",
        "LICENSE"
    ],
    "scripts": {
        "build": "tsc && node scripts/build-skill-bridge.mjs && node scripts/build-mcp-server.mjs && node scripts/build-codex-server.mjs && node scripts/build-gemini-server.mjs",
        "build:bridge": "node scripts/build-skill-bridge.mjs",
        "dev": "tsc --watch",
        "start": "node dist/index.js",
        "setup": "node scripts/setup.mjs",
        "test": "npm run test:unit",
        "test:run": "vitest run",
        "test:unit": "npm run test:run",
        "test:full": "npm run lint && npm run test:run",
        "test:ci": "npm run lint && npm run test:run",
        "lint": "eslint src",
        "prepare": "npm run build"
    },
    "dependencies": {
        "@anthropic-ai/claude-agent-sdk": "^0.1.0",
        "@ast-grep/napi": "^0.31.0",
        "@modelcontextprotocol/sdk": "^1.25.3",
        "@tokscale/core": "^1.0.25",
        "@types/better-sqlite3": "^7.6.13",
        "ajv": "^8.17.1",
        "better-sqlite3": "^12.6.2",
        "chalk": "^5.3.0",
        "commander": "^12.1.0",
        "jsonc-parser": "^3.3.1",
        "safe-regex": "^2.1.1",
        "vscode-languageserver-protocol": "^3.17.5",
        "zod": "^3.23.8"
    },
    "devDependencies": {
        "@eslint/js": "^9.39.2",
        "@types/node": "^22.19.7",
        "@typescript-eslint/eslint-plugin": "^8.18.2",
        "@typescript-eslint/parser": "^8.18.2",
        "@vitest/ui": "^4.0.17",
        "esbuild": "^0.27.2",
        "eslint": "^9.17.0",
        "prettier": "^3.4.2",
        "tsx": "^4.19.2",
        "typescript": "^5.7.2",
        "typescript-eslint": "^8.53.0",
        "vitest": "^4.0.17"
    },
    "engines": {
        "node": ">=20.0.0"
    },
    "author": "sk-claudecode contributors",
    "license": "MIT",
    "keywords": [
        "claude",
        "claude-code",
        "ai",
        "agent",
        "multi-agent",
        "orchestration",
        "scientific",
        "quant",
        "trading",
        "hud"
    ]
}
