-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
74 lines (74 loc) · 2.02 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
74
{
"name": "vite-plugin-static-copy",
"version": "2.0.0",
"description": "rollup-plugin-copy for vite with dev server support.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"files": [
"dist"
],
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint": "eslint --cache .",
"format": "prettier --write --cache .",
"type-check": "tsc --noEmit",
"test": "vitest",
"release:version": "changeset version && pnpm install --no-frozen-lockfile",
"release:publish": "changeset publish"
},
"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": "^5.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.12.0",
"@polka/url": "^1.0.0-next.28",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.16.11",
"@types/throttle-debounce": "^5.0.2",
"@vitest/eslint-plugin": "^1.1.7",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"mrmime": "^2.0.0",
"node-fetch": "^3.3.2",
"prettier": "^3.3.3",
"throttle-debounce": "^5.0.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.1",
"vite": "^5.4.8",
"vitest": "^1.6.0",
"vitest-github-actions-reporter": "^0.11.1"
},
"dependencies": {
"chokidar": "^3.5.3",
"fast-glob": "^3.2.11",
"fs-extra": "^11.1.0",
"picocolors": "^1.0.0"
},
"packageManager": "pnpm@9.12.1"
}