| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | {  "name": "vite-plugin-style-import",  "version": "1.4.1",  "description": "A plug-in that imports component library styles on demand",  "main": "dist/index.js",  "exports": {    "import": "./dist/index.mjs",    "require": "./dist/index.js"  },  "types": "dist/index.d.ts",  "license": "MIT",  "author": "Vben",  "files": [    "dist"  ],  "scripts": {    "dev": "npm run build -- --watch",    "build": "tsup src/index.ts --dts --format cjs,esm",    "prepublishOnly": "yarn build",    "log": "conventional-changelog -p angular -i CHANGELOG.md -s ",    "lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",    "lint:eslint": "eslint \"src/**/*.{ts,tsx}\" --fix",    "test": "jest --coverage",    "test:watch": "jest --watch",    "prepare": "husky install"  },  "keywords": [    "vite",    "style",    "import",    "css"  ],  "repository": {    "type": "git",    "url": "https://github.com/anncwb/vite-plugin-style-import"  },  "bugs": {    "url": "https://github.com/anncwb/vite-plugin-style-import/issues"  },  "homepage": "https://github.com/anncwb/vite-plugin-style-import/tree/master/#readme",  "dependencies": {    "@rollup/pluginutils": "^4.1.2",    "change-case": "^4.1.2",    "debug": "^4.3.3",    "es-module-lexer": "^0.9.3",    "fs-extra": "^10.0.0",    "magic-string": "^0.25.7"  },  "peerDependencies": {    "vite": ">=2.0.0"  },  "devDependencies": {    "@commitlint/cli": "^16.0.0",    "@commitlint/config-conventional": "^16.0.0",    "@types/debug": "^4.1.7",    "@types/fs-extra": "^9.0.13",    "@types/jest": "^27.0.3",    "@types/node": "^17.0.5",    "@typescript-eslint/eslint-plugin": "^5.8.1",    "@typescript-eslint/parser": "^5.8.1",    "commitizen": "^4.2.4",    "conventional-changelog-cli": "^2.2.2",    "eslint": "^8.5.0",    "eslint-config-prettier": "^8.3.0",    "eslint-plugin-jest": "^25.3.2",    "husky": "^7.0.4",    "ini": "^2.0.0",    "jest": "^27.4.5",    "lint-staged": "^12.1.4",    "prettier": "^2.5.1",    "rimraf": "^3.0.2",    "ts-jest": "^27.1.2",    "tsup": "^5.11.9",    "typescript": "^4.5.4",    "vite": "^2.7.7"  }}
 |