{
  "name": "un-detector",
  "version": "1.2.0",
  "description": "A simple and zero-dependency browser, os and device detector.",
  "type": "module",
  "keywords": [
    "browser detector",
    "browser type",
    "node type",
    "os",
    "os detector",
    "detect",
    "useragent"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hemengke1997/un-detector.git"
  },
  "author": "hemengke <https://github.com/hemengke1997>",
  "files": [
    "CHANGELOG.md",
    "README.md",
    "dist"
  ],
  "main": "./dist/lib/index.cjs",
  "module": "./dist/es/index.js",
  "types": "./dist/es/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/es/index.d.ts",
      "require": "./dist/lib/index.cjs",
      "import": "./dist/es/index.js"
    }
  },
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.8.0",
    "@minko-fe/commitlint-config": "^2.1.2",
    "@minko-fe/eslint-config": "^4.2.2",
    "@minko-fe/prettier-config": "^2.2.5",
    "@minko-fe/tsconfig": "^2.1.1",
    "@types/node": "^20.17.6",
    "bumpp": "^9.11.1",
    "conventional-changelog-cli": "^5.0.0",
    "eslint": "^9.24.0",
    "happy-dom": "^14.12.3",
    "jsdom": "^24.1.3",
    "npm-run-all2": "^6.2.6",
    "simple-git-hooks": "^2.12.1",
    "taze": "^19.0.4",
    "tsup": "^8.4.0",
    "tsup-plugin-bundleless": "^1.2.1",
    "typescript": "^5.6.3",
    "vite": "^5.4.18",
    "vitest": "^3.1.1"
  },
  "simple-git-hooks": {
    "commit-msg": "pnpm exec commitlint -e",
    "pre-commit": "pnpm run lint"
  },
  "prettier": "@minko-fe/prettier-config",
  "scripts": {
    "dev": "tsup --watch",
    "build": "rm -rf dist && tsup",
    "build:pages": "pnpm run build && cd playground && pnpm run build",
    "test": "vitest",
    "test:unit": "vitest --run",
    "lint": "eslint . --fix",
    "up": "taze -I -w",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
    "bump": "bumpp package.json -c --no-push -t --all -x \"npm run changelog\""
  }
}