{
  "name": "@devframes/plugin-code-server",
  "type": "module",
  "version": "1.0.0",
  "description": "Devframe plugin that runs VS Code in the browser as an embedded editor panel.",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/devframes/devframe#readme",
  "repository": {
    "directory": "plugins/code-server",
    "type": "git",
    "url": "git+https://github.com/devframes/devframe.git"
  },
  "bugs": "https://github.com/devframes/devframe/issues",
  "keywords": [
    "devframe",
    "devframe-plugin",
    "devtools",
    "code-server",
    "vscode"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/node/index.mjs",
    "./cli": "./dist/node/cli.mjs",
    "./constants": "./dist/node/constants.mjs",
    "./node": "./dist/node/setup.mjs",
    "./rpc": "./dist/node/rpc/index.mjs",
    "./types": "./dist/node/types.mjs",
    "./vite": "./dist/node/vite.mjs",
    "./package.json": "./package.json"
  },
  "types": "./dist/node/index.d.mts",
  "bin": {
    "devframe-code-server": "./bin.mjs"
  },
  "files": [
    "bin.mjs",
    "dist"
  ],
  "peerDependencies": {
    "@devframes/plugin-code-server--assets": "1.0.0",
    "devframe": "1.0.0",
    "vite": "^8.0.0"
  },
  "peerDependenciesMeta": {
    "@devframes/plugin-code-server--assets": {
      "optional": true
    },
    "vite": {
      "optional": true
    }
  },
  "dependencies": {
    "@devframes/vite": "1.0.0",
    "cac": "^7.0.0"
  },
  "devDependencies": {
    "@antfu/design": "^0.4.0",
    "@devframes/plugin-code-server--assets": "1.0.0",
    "@iconify-json/ph": "^1.2.2",
    "@storybook/addon-docs": "^10.6.0",
    "@storybook/vue3-vite": "^10.6.0",
    "@types/node": "^26.5.1",
    "@vitejs/plugin-vue": "^6.0.8",
    "colorjs.io": "^0.7.1",
    "devframe": "1.0.0",
    "h3": "^2.0.1-rc.31",
    "pathe": "^2.0.3",
    "storybook": "^10.6.0",
    "tsdown": "^0.23.0",
    "unocss": "^66.10.2",
    "vite": "^8.3.0",
    "vitest": "^5.0.0",
    "vue": "^3.5.42"
  },
  "scripts": {
    "build": "tsdown && vite build --config app/vite.config.ts",
    "build:app": "vite build --config app/vite.config.ts",
    "watch": "tsdown --watch",
    "dev": "vite --config app/vite.config.ts --host",
    "play": "pnpm run build && node playgrounds/server.mjs",
    "storybook": "storybook dev -p 6013",
    "build-storybook": "storybook build",
    "cli:build": "node bin.mjs build --out-dir dist/static",
    "typecheck": "tsc --noEmit",
    "test": "vitest run"
  }
}