{
  "name": "vite-plugin-load-css-module",
  "version": "0.1.4",
  "description": "A plugin to extend vite's css module rules, not just \".module\" suffix",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "scripts": {
    "lint": "eslint --cache --fix --ext .ts,.js src",
    "dev": "npm run build -- --watch",
    "build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts",
    "test": "jest",
    "commit": "cz",
    "format": "prettier --write .",
    "release": "standard-version",
    "major": "standard-version --release-as major",
    "minor": "standard-version --release-as minor",
    "patch": "standard-version --release-as patch"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "vite",
    "vite-plugin",
    "css-module"
  ],
  "license": "ISC",
  "lint-staged": {
    "*": [
      "prettier --write --ignore-unknown"
    ],
    "*.{js,ts}": [
      "eslint --cache"
    ]
  },
  "simple-git-hooks": {
    "pre-commit": "npx lint-staged",
    "commit-msg": "npx --no -- commitlint --edit"
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "homepage": "https://github.com/jsonz1993/vite-plugin-load-css-module",
  "bugs": {
    "url": "https://github.com/jsonz1993/vite-plugin-load-css-module/issues"
  },
  "author": "jsonz1993 <jsonz@qq.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/jsonz1993/vite-plugin-load-css-module"
  },
  "dependencies": {},
  "peerDependencies": {
    "vite": "^2.8.0"
  },
  "devDependencies": {
    "@babel/cli": "7.17.0",
    "@babel/core": "7.17.2",
    "@babel/preset-env": "7.16.11",
    "@babel/preset-typescript": "7.16.7",
    "@commitlint/cli": "16.1.0",
    "@commitlint/config-conventional": "16.0.0",
    "@jsonz/eslint-config": "^0.4.0",
    "@types/jest": "27.4.0",
    "@types/node": "17.0.17",
    "commitizen": "4.2.4",
    "cz-conventional-changelog": "3.3.0",
    "eslint": "8.8.0",
    "jest": "27.5.1",
    "lint-staged": "12.3.3",
    "prettier": "2.5.1",
    "rimraf": "^3.0.2",
    "simple-git-hooks": "2.7.0",
    "standard-version": "^9.3.2",
    "ts-node": "10.5.0",
    "tsup": "5.11.13",
    "typescript": "4.5.5",
    "vite": "^2.8.0"
  }
}
