48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
|
{
|
||
|
"name": "vite-plugin-copy",
|
||
|
"version": "0.1.6",
|
||
|
"description": "Vitejs plguin: copy files and folders",
|
||
|
"author": "goosy <goosy.jo@gmail.com>",
|
||
|
"type": "module",
|
||
|
"main": "dist/vite-plugin-copy.cjs",
|
||
|
"module": "dist/vite-plugin-copy.js",
|
||
|
"exports": {
|
||
|
".": "./dist/vite-plugin-copy.js",
|
||
|
"./cjs": "./dist/vite-plugin-copy.cjs"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=14.8.0"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"fast-glob": "^3.2.7"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@rollup/plugin-commonjs": "^19.0.2",
|
||
|
"@rollup/plugin-node-resolve": "^13.0.4",
|
||
|
"@vitejs/plugin-vue": "^1.2.3",
|
||
|
"mocha": "^9.0.3",
|
||
|
"rimraf": "^3.0.2",
|
||
|
"vite": "^2.4.4",
|
||
|
"vue": "^3.1.3"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"clean": "rimraf dist",
|
||
|
"build": "rollup -c",
|
||
|
"postpublish": "npm run clean",
|
||
|
"prepublishOnly": "npm run clean && npm run build",
|
||
|
"test": "mocha"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"vite",
|
||
|
"vite-plugin",
|
||
|
"copy",
|
||
|
"asset",
|
||
|
"assets",
|
||
|
"file",
|
||
|
"files",
|
||
|
"folder",
|
||
|
"folders",
|
||
|
"glob"
|
||
|
],
|
||
|
"license": "MIT"
|
||
|
}
|