UNPKG

@web/rollup-plugin-copy

Version:

Rollup plugin which copies asset files while retaining the relative folder structure.

55 lines (54 loc) 1.25 kB
{ "name": "@web/rollup-plugin-copy", "version": "1.0.0", "publishConfig": { "access": "public" }, "description": "Rollup plugin which copies asset files while retaining the relative folder structure.", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/modernweb-dev/web.git", "directory": "packages/rollup-plugin-copy" }, "author": "modern-web", "homepage": "https://github.com/modernweb-dev/web/tree/master/packages/rollup-plugin-copy", "bugs": { "url": "https://github.com/modernweb-dev/web/issues" }, "main": "src/copy.js", "module": "index.mjs", "exports": { ".": { "types": "./dist/copy.d.ts", "import": "./index.mjs", "require": "./src/copy.js" } }, "engines": { "node": ">=22.0.0" }, "scripts": { "test:node": "node --test --test-force-exit \"test/**/*.test.js\"", "test:watch": "node --test --test-force-exit --watch \"test/**/*.test.js\"" }, "files": [ "*.d.ts", "*.js", "*.mjs", "dist", "src" ], "keywords": [ "rollup", "plugin", "copy" ], "dependencies": { "glob": "^10.0.0" }, "devDependencies": { "@types/glob": "^8.1.0" }, "types": "dist/copy.d.ts" }