{
  "name": "hwjcode",
  "version": "1.1.67",
  "engines": {
    "node": ">=20.0.0"
  },
  "type": "module",
  "workspaces": [
    "packages/cli",
    "packages/core",
    "packages/vscode-ui-plugin",
    "packages/desktop"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/OrionStarAI/EasyCode.git"
  },
  "keywords": [
    "ai",
    "coding-assistant",
    "easycode",
    "cli",
    "gemini",
    "code-generation",
    "ai-assistant",
    "developer-tools"
  ],
  "author": "Easy Code Team",
  "license": "Apache-2.0",
  "homepage": "https://github.com/OrionStarAI/EasyCode#readme",
  "bugs": {
    "url": "https://github.com/OrionStarAI/EasyCode/issues"
  },
  "config": {
    "sandboxImageUri": "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.1.13"
  },
  "scripts": {
    "start": "node scripts/start.js",
    "dev": "cross-env FILE_DEBUG=1 LOG_TO_FILE=true DEEPX_SERVER_URL=https://api-code.deepvlab.ai DEEPX_WEB_URL=https://dvcode.deepvlab.ai node scripts/start.js",
    "debug": "cross-env DEBUG=1  DEEPX_SERVER_URL=https://api-code.deepvlab.ai DEEPX_WEB_URL=https://dvcode.deepvlab.ai node --inspect-brk scripts/start.js",
    "auth:npm": "npx google-artifactregistry-auth",
    "auth:docker": "gcloud auth configure-docker us-west1-docker.pkg.dev",
    "auth": "npm run auth:npm && npm run auth:docker",
    "generate": "node scripts/generate-git-commit-info.js",
    "build": "node scripts/build.js",
    "build:all": "cross-env INCLUDE_VSCODE_PLUGIN=true npm run build && npm run build:sandbox && npm run build:vscode",
    "build:vscode": "node scripts/build_vscode_companion.js",
    "build:packages": "npm run build --workspaces",
    "build:full": "cross-env INCLUDE_VSCODE_PLUGIN=true node scripts/build.js",
    "build:sandbox": "node scripts/build_sandbox.js --skip-npm-install-build",
    "bundle": "cross-env BUILD_ENV=production npm run build && cross-env BUILD_ENV=production node esbuild.config.js && cross-env BUILD_ENV=production node scripts/copy_bundle_assets.js",
    "bundle:dev": "cross-env BUILD_ENV=development npm run build && cross-env BUILD_ENV=development node esbuild.config.js && cross-env BUILD_ENV=development node scripts/copy_bundle_assets.js",
    "bundle:prod": "cross-env BUILD_ENV=production npm run build && cross-env BUILD_ENV=production node esbuild.config.js && cross-env BUILD_ENV=production DOWNLOAD_ALL_PLATFORMS=true node scripts/copy_bundle_assets.js",
    "bundle:full": "cross-env INCLUDE_VSCODE_PLUGIN=true npm run build:full && node esbuild.config.js && node scripts/copy_bundle_assets.js",
    "bundle:cross-platform:dev": "cross-env BUILD_ENV=development DOWNLOAD_ALL_PLATFORMS=true npm run build && cross-env BUILD_ENV=development node esbuild.config.js && cross-env BUILD_ENV=development DOWNLOAD_ALL_PLATFORMS=true node scripts/copy_bundle_assets.js",
    "bundle:cross-platform:prod": "cross-env BUILD_ENV=production DOWNLOAD_ALL_PLATFORMS=true npm run build && cross-env BUILD_ENV=production node esbuild.config.js && cross-env BUILD_ENV=production DOWNLOAD_ALL_PLATFORMS=true node scripts/copy_bundle_assets.js",
    "bundle:cross-platform:full": "cross-env DOWNLOAD_ALL_PLATFORMS=true INCLUDE_VSCODE_PLUGIN=true npm run build:full && node esbuild.config.js && cross-env DOWNLOAD_ALL_PLATFORMS=true node scripts/copy_bundle_assets.js",
    "pack:dev": "cross-env ENABLE_CHECKPOINTING=true npm run bundle:cross-platform:dev && cross-env BUILD_ENV=development ENABLE_CHECKPOINTING=true node scripts/newpack.js",
    "pack:prod": "cross-env ENABLE_CHECKPOINTING=true npm run bundle:cross-platform:prod && cross-env BUILD_ENV=production ENABLE_CHECKPOINTING=true node scripts/newpack.js",
    "pack:prod:ci": "cross-env ENABLE_CHECKPOINTING=true npm run bundle:cross-platform:prod && cross-env BUILD_ENV=production ENABLE_CHECKPOINTING=true node scripts/newpack.js -- --no-version-bump",
    "pack:full": "cross-env ENABLE_CHECKPOINTING=true npm run bundle:cross-platform:full && cross-env ENABLE_CHECKPOINTING=true node scripts/newpack.js",
    "desktop:dev": "cross-env DEEPX_SERVER_URL=https://api-code.deepvlab.ai DEEPX_WEB_URL=https://dvcode.deepvlab.ai npm run bundle:dev && cross-env DEEPX_SERVER_URL=https://api-code.deepvlab.ai DEEPX_WEB_URL=https://dvcode.deepvlab.ai npm run dev --workspace=packages/desktop",
    "desktop:start:prod": "cross-env BUILD_ENV=production npm run bundle && npm run start --workspace=packages/desktop",
    "desktop:build": "npm run build --workspace=packages/desktop",
    "pack:desktop": "cross-env BUILD_ENV=production DOWNLOAD_ALL_PLATFORMS=true npm run bundle && npm run pack:all --workspace=packages/desktop",
    "pack:desktop:win": "cross-env BUILD_ENV=production npm run bundle && npm run pack:win --workspace=packages/desktop",
    "pack:desktop:mac": "cross-env BUILD_ENV=production npm run bundle && npm run pack:mac --workspace=packages/desktop",
    "pack:desktop:linux": "cross-env BUILD_ENV=production npm run bundle && npm run pack:linux --workspace=packages/desktop",
    "desktop:pack:win": "npm run pack:desktop:win",
    "desktop:pack:mac": "npm run pack:desktop:mac",
    "desktop:pack:mac:notarize": "node packages/desktop/scripts/interactive-build.cjs",
    "pack:mac:dmg": "node packages/desktop/scripts/interactive-build.cjs",
    "package": "npm run package --workspace=packages/vscode-ui-plugin",
    "pack:vscode": "npm run package --workspace=packages/vscode-ui-plugin && copy packages\\vscode-ui-plugin\\*.vsix .",
    "test": "npm run test --workspaces",
    "test:ci": "npm run test:ci --workspaces --if-present && npm run test:scripts",
    "test:scripts": "vitest run --config ./scripts/tests/vitest.config.ts",
    "test:e2e": "npm run test:integration:sandbox:none -- --verbose --keep-output",
    "test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",
    "test:integration:sandbox:none": "GEMINI_SANDBOX=false node integration-tests/run-tests.js",
    "test:integration:sandbox:docker": "GEMINI_SANDBOX=docker node integration-tests/run-tests.js",
    "test:integration:sandbox:podman": "GEMINI_SANDBOX=podman node integration-tests/run-tests.js",
    "lint": "eslint . --ext .ts,.tsx && eslint integration-tests",
    "lint:fix": "eslint . --fix && eslint integration-tests --fix",
    "lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 && eslint integration-tests --max-warnings 0",
    "format": "prettier --write .",
    "typecheck": "npm run typecheck --workspaces --if-present",
    "preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci",
    "prepare": "node scripts/prepare.js",
    "prepublishOnly": "node scripts/prepare-publish.js && cross-env BUILD_ENV=production NPM_PUBLISH_MODE=1 npm run bundle:prod",
    "postpublish": "node scripts/restore-after-publish.js",
    "prepare:package": "node scripts/prepare-package.js",
    "postinstall": "node -e \"const fs = require('fs'); const path = 'bundle/fix-binary-permissions.js'; if (fs.existsSync(path)) { require('child_process').execSync('node ' + path + ' --all', {stdio: 'inherit'}); } else { console.log('⏭️  Skipping binary permissions fix (bundle not built yet)'); }\"",
    "release:version": "node scripts/version.js",
    "telemetry": "node scripts/telemetry.js",
    "clean": "node scripts/clean.js",
    "env:production": "./scripts/switch-env.sh production",
    "env:development": "./scripts/switch-env.sh development",
    "env:test": "./scripts/switch-env.sh test"
  },
  "bin": {
    "hwjcode": "bundle/easycode.js"
  },
  "preferGlobal": true,
  "files": [
    "bundle/",
    "README.md",
    "LICENSE"
  ],
  "devDependencies": {
    "@testing-library/dom": "^10.4.1",
    "@testing-library/react": "^16.3.1",
    "@types/fs-extra": "^11.0.4",
    "@types/micromatch": "^4.0.9",
    "@types/mime-types": "^3.0.1",
    "@types/minimatch": "^5.1.2",
    "@types/mock-fs": "^4.13.4",
    "@types/node": "^20.19.28",
    "@types/pidusage": "^2.0.5",
    "@types/shell-quote": "^1.7.5",
    "@vitest/coverage-v8": "^3.2.6",
    "chalk": "^5.6.2",
    "cli-progress": "^3.12.0",
    "concurrently": "^9.2.0",
    "cross-env": "^7.0.3",
    "esbuild": "^0.25.0",
    "eslint": "^9.24.0",
    "eslint-config-prettier": "^10.1.2",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-react": "^7.37.5",
    "eslint-plugin-react-hooks": "^5.2.0",
    "glob": "^10.4.5",
    "globals": "^16.0.0",
    "ink": "npm:@jrichman/ink@6.6.9",
    "json": "^11.0.0",
    "lodash": "^4.17.21",
    "memfs": "^4.17.2",
    "mock-fs": "^5.5.0",
    "ora": "^9.0.0",
    "prettier": "^3.5.3",
    "react-devtools-core": "^6.1.2",
    "typescript-eslint": "^8.30.1",
    "vitest": "3.2.6",
    "yargs": "17.7.2"
  },
  "dependencies": {
    "@larksuiteoapi/node-sdk": "^1.66.0",
    "@vscode/ripgrep": "^1.15.14",
    "fs-extra": "^11.3.1",
    "gradient-string": "^2.0.2",
    "open": "^10.0.0",
    "pidtree": "^0.6.0",
    "pidusage": "^4.0.1",
    "qrcode-terminal": "^0.12.0",
    "undici": "^7.10.0"
  },
  "overrides": {
    "eslint": {
      "ajv": "^6.12.6"
    },
    "@eslint/eslintrc": {
      "ajv": "^6.12.6"
    },
    "ajv": "^8.17.1",
    "ink": "npm:@jrichman/ink@6.6.9",
    "wrap-ansi": "^7.0.0",
    "axios": "^1.16.0",
    "js-yaml": "^4.1.0"
  }
}
