{
  "name": "vite-plugin-info",
  "version": "0.4.1",
  "description": "Export build information as Vite virutal module",
  "keywords": [
    "vite",
    "vite-plugin",
    "git",
    "CI"
  ],
  "homepage": "https://github.com/yjl9903/vite-plugin-info#readme",
  "bugs": {
    "url": "https://github.com/yjl9903/vite-plugin-info/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yjl9903/vite-plugin-info.git"
  },
  "license": "MIT",
  "author": "XLor",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "import": "./dist/index.mjs",
      "types": "./dist/index.d.ts"
    },
    "./client": {
      "types": "./client.d.ts"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "*.d.ts"
  ],
  "dependencies": {
    "ci-info": "^3.8.0",
    "git-repo-info": "^2.1.1",
    "parse-github-url": "^1.0.2",
    "remote-origin-url": "^2.0.0"
  },
  "devDependencies": {
    "@types/node": "^18.16.18",
    "@types/parse-github-url": "^1.0.0",
    "@types/remote-origin-url": "^2.0.1",
    "bumpp": "^9.1.1",
    "date-fns": "^2.30.0",
    "prettier": "^2.8.8",
    "typescript": "^5.1.3",
    "unbuild": "^1.2.1",
    "vite": "^4.3.9",
    "vitest": "^0.32.2"
  },
  "peerDependencies": {
    "vite": "^2.9.13 || ^3.0.0 || ^4.0.0"
  },
  "packageManager": "pnpm@8.6.3",
  "scripts": {
    "build": "unbuild",
    "build:play": "pnpm -C playground build",
    "dev": "unbuild --stub",
    "dev:play": "pnpm -C playground dev",
    "format": "prettier --write playground/**/*.ts src/**/*.ts",
    "release": "bumpp package.json ./playground/package.json --commit --push --tag && pnpm publish",
    "test": "vitest",
    "typecheck": "tsc --noEmit",
    "preversion": "pnpm typecheck && pnpm build"
  }
}