forked from sapphi-red/vite-plugin-static-copy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.84 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "vite-plugin-static-copy",
"version": "0.12.0",
"description": "rollup-plugin-copy for vite with dev server support.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"type": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint": "eslint --cache .",
"format": "prettier --write --cache .",
"type-check": "tsc --noEmit",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapphi-red/vite-plugin-static-copy.git"
},
"keywords": [
"vite",
"vite-plugin"
],
"author": "sapphi-red (https://github.com/sapphi-red)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sapphi-red/vite-plugin-static-copy/issues"
},
"homepage": "https://github.com/sapphi-red/vite-plugin-static-copy#readme",
"sideEffects": false,
"peerDependencies": {
"vite": "^3.0.0"
},
"devDependencies": {
"@polka/url": "^1.0.0-next.21",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.56",
"@types/throttle-debounce": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"mrmime": "^1.0.1",
"node-fetch": "^3.2.10",
"prettier": "^2.7.1",
"throttle-debounce": "^5.0.0",
"tsup": "^6.4.0",
"typescript": "^4.8.4",
"vite": "^3.2.3",
"vitest": "^0.25.1",
"vitest-github-actions-reporter": "^0.9.0"
},
"dependencies": {
"chokidar": "^3.5.3",
"fast-glob": "^3.2.11",
"fs-extra": "^10.1.0",
"picocolors": "^1.0.0"
}
}