| { |
| "name": "@rollup/plugin-dynamic-import-vars", |
| "version": "2.1.5", |
| "publishConfig": { |
| "access": "public" |
| }, |
| "description": "Resolving dynamic imports that contain variables.", |
| "license": "MIT", |
| "repository": { |
| "url": "rollup/plugins", |
| "directory": "packages/dynamic-import-vars" |
| }, |
| "author": "LarsDenBakker", |
| "homepage": "https://github.com/rollup/plugins/tree/master/packages/dynamic-import-vars", |
| "bugs": "https://github.com/rollup/plugins/issues", |
| "main": "./dist/cjs/index.js", |
| "module": "./dist/es/index.js", |
| "exports": { |
| "types": "./types/index.d.ts", |
| "import": "./dist/es/index.js", |
| "default": "./dist/cjs/index.js" |
| }, |
| "engines": { |
| "node": ">=14.0.0" |
| }, |
| "files": [ |
| "dist", |
| "!dist/**/*.map", |
| "types", |
| "README.md", |
| "LICENSE" |
| ], |
| "keywords": [ |
| "rollup", |
| "plugin", |
| "dynamic import", |
| "variable", |
| "variables", |
| "glob", |
| "string", |
| "concatenation", |
| "interpolation" |
| ], |
| "peerDependencies": { |
| "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" |
| }, |
| "peerDependenciesMeta": { |
| "rollup": { |
| "optional": true |
| } |
| }, |
| "dependencies": { |
| "@rollup/pluginutils": "^5.0.1", |
| "astring": "^1.8.5", |
| "estree-walker": "^2.0.2", |
| "fast-glob": "^3.2.12", |
| "magic-string": "^0.30.3" |
| }, |
| "devDependencies": { |
| "acorn": "^8.8.0", |
| "prettier": "^2.7.1", |
| "rollup": "^4.0.0-24" |
| }, |
| "types": "./types/index.d.ts", |
| "ava": { |
| "workerThreads": false, |
| "files": [ |
| "!**/fixtures/**", |
| "!**/snapshots/**" |
| ] |
| }, |
| "scripts": { |
| "build": "rollup -c", |
| "ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov", |
| "ci:lint": "pnpm build && pnpm lint", |
| "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", |
| "ci:test": "pnpm test -- --verbose", |
| "prebuild": "del-cli dist", |
| "prerelease": "pnpm build", |
| "pretest": "pnpm build --sourcemap", |
| "release": "pnpm --workspace-root package:release $(pwd)", |
| "test": "ava" |
| } |
| } |