-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "vite-plugin-cp",
"version": "4.0.8",
"description": "Copies files to a specified directory.",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"engines": {
"node": ">=14.18.0",
"vite": ">=3.1.0"
},
"scripts": {
"build:lib": "vite build",
"watch": "vite build --watch",
"release": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fengxinming/vite-plugins.git",
"directory": "packages/vite-plugin-cp"
},
"keywords": [
"vite-plugin",
"vite-plugin-cp"
],
"author": "Jesse Feng <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengxinming/vite-plugins/issues"
},
"homepage": "https://github.com/fengxinming/vite-plugins#readme",
"dependencies": {
"@types/node": "^14.18.63",
"fs-extra": "^11.1.1",
"globby": "^13.2.2"
},
"files": [
"dist"
]
}