{
  "name": "code-inspector-core",
  "version": "1.0.5",
  "main": "dist/index.js",
  "module": "./dist/index.mjs",
  "types": "types/index.d.ts",
  "files": [
    "dist",
    "types"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./types/index.d.ts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./types/index.d.ts",
        "default": "./dist/index.js"
      }
    }
  },
  "repository": "git@github.com:zh-lx/code-inspector.git",
  "author": "zh-lx <18366276315@163.com>",
  "license": "MIT",
  "homepage": "https://inspector.fe-dev.cn/en",
  "description": "Click the dom on the page, it will open your IDE and position the cursor to the source code location of the dom.",
  "keywords": [
    "webpack",
    "vite",
    "plugin",
    "vue",
    "vscode",
    "inspector",
    "inspect"
  ],
  "bugs": {
    "url": "https://github.com/zh-lx/code-inspector/issues"
  },
  "dependencies": {
    "@vue/compiler-dom": "^3.5.13",
    "chalk": "^4.1.1",
    "dotenv": "^16.1.4",
    "launch-ide": "1.1.1",
    "portfinder": "^1.0.28"
  },
  "devDependencies": {
    "@babel/core": "^7.21.3",
    "@babel/plugin-proposal-decorators": "^7.22.7",
    "@babel/plugin-syntax-import-meta": "^7.10.4",
    "@babel/plugin-transform-typescript": "^7.21.3",
    "@types/node": "^18.14.1",
    "@vue/babel-plugin-jsx": "^1.1.1",
    "@vue/compiler-sfc": "^3.3.4",
    "lit": "^2.6.1",
    "magic-string": "^0.30.0",
    "rollup-plugin-terser": "^7.0.2",
    "svelte": "^4.2.7",
    "typescript": "^4.9.3",
    "vite": "^4.3.9",
    "vite-plugin-node-stdlib-browser": "^0.2.1",
    "volar-service-pug": "^0.0.63"
  },
  "scripts": {
    "dev": "vite",
    "build:server": "vite build",
    "build:client": " vite build --config ./vite.client.config.ts",
    "build:client:watch": " vite build --config ./vite.client.config.ts --watch",
    "clear": "rimraf ./dist && rimraf ./types",
    "build": "pnpm clear && tsc && pnpm build:server && pnpm build:client",
    "pub": "pnpm publish",
    "pub:beta": "pnpm publish --tag beta"
  }
}