55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
|
{
|
||
|
"name": "@web/rollup-plugin-copy",
|
||
|
"version": "0.4.1",
|
||
|
"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": "./index.d.ts",
|
||
|
"import": "./index.mjs",
|
||
|
"require": "./src/copy.js"
|
||
|
}
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=16.0.0"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "mocha test/**/*.test.js --reporter dot",
|
||
|
"test:watch": "mocha test/**/*.test.js --watch --watch-files src,test --reporter dot"
|
||
|
},
|
||
|
"files": [
|
||
|
"*.d.ts",
|
||
|
"*.js",
|
||
|
"*.mjs",
|
||
|
"dist",
|
||
|
"src"
|
||
|
],
|
||
|
"keywords": [
|
||
|
"rollup",
|
||
|
"plugin",
|
||
|
"copy"
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"glob": "^7.1.6"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/glob": "^7.1.3"
|
||
|
},
|
||
|
"types": "dist/copy.d.ts"
|
||
|
}
|