{ "name": "rollup-plugin-keep-css-imports", "version": "1.0.0", "description": "Rollup plugin that allows to maintain the original structure of style imports without altering them during the bundling process", "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.cjs" } } }, "files": [ "dist", "README.md", "LICENSE" ], "keywords": [ "rollup", "rollup-plugin", "css-modules", "sass", "scss", "keep", "preserve", "imports" ], "homepage": "https://github.com/SLTKA/rollup-plugin-keep-css-imports", "author": "Alexandr Yeskov", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/SLTKA/rollup-plugin-keep-css-imports" }, "bugs": { "url": "https://github.com/SLTKA/rollup-plugin-keep-css-imports/issues" }, "scripts": { "prebuild": "rimraf -rf dist/", "build": "rollup -c", "test": "mocha", "pretest": "yarn build" }, "devDependencies": { "@rollup/plugin-typescript": "^11.1.6", "@types/mocha": "^10.0.6", "@types/node": "^20.11.24", "@typescript-eslint/eslint-plugin": "^7.1.1", "@typescript-eslint/parser": "^7.1.1", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-mocha": "^10.2.0", "eslint-plugin-prettier": "^5.1.3", "mocha": "^10.2.0", "prettier": "^3.2.4", "rimraf": "^5.0.5", "rollup": "^4.9.5", "rollup-plugin-dts": "^6.1.0", "sass": "^1.70.0", "ts-node": "^10.9.2", "typescript": "^5.3.3", "typescript-eslint": "^7.1.1" }, "dependencies": { "magic-string": "^0.30.5" } }