-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.24 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.24 KB
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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "vite-plugin-static-copy",
"version": "4.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": "^22.0.0 || >=24.0.0"
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"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",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/sapphi-red"
},
"sideEffects": false,
"peerDependencies": {
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.39.4",
"@polka/url": "^1.0.0-next.29",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.19.15",
"@types/throttle-debounce": "^5.0.2",
"@vitest/eslint-plugin": "^1.6.11",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"mrmime": "^2.0.1",
"prettier": "^3.8.1",
"throttle-debounce": "^5.0.2",
"tsdown": "^0.21.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^8.0.0",
"vitest": "^4.1.0"
},
"dependencies": {
"chokidar": "^3.6.0",
"p-map": "^7.0.4",
"picocolors": "^1.1.1",
"tinyglobby": "^0.2.15"
},
"compatiblePackages": {
"schemaVersion": 1,
"rollup": {
"type": "incompatible",
"reason": "Uses Vite-specific APIs"
},
"rolldown": {
"type": "incompatible",
"reason": "Uses Vite-specific APIs"
}
},
"packageManager": "[email protected]"
}