84 lines
2.2 KiB
JSON
84 lines
2.2 KiB
JSON
{
|
|
"name": "vite-plugin-static-copy",
|
|
"version": "3.2.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"
|
|
},
|
|
"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": "^5.0.0 || ^6.0.0 || ^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/changelog-github": "^0.5.2",
|
|
"@changesets/cli": "^2.29.8",
|
|
"@eslint/js": "^9.39.1",
|
|
"@polka/url": "^1.0.0-next.29",
|
|
"@types/eslint-config-prettier": "^6.11.3",
|
|
"@types/node": "^22.19.1",
|
|
"@types/throttle-debounce": "^5.0.2",
|
|
"@vitest/eslint-plugin": "^1.5.1",
|
|
"eslint": "^9.39.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"mrmime": "^2.0.1",
|
|
"prettier": "^3.7.3",
|
|
"throttle-debounce": "^5.0.2",
|
|
"tsdown": "^0.16.8",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.48.0",
|
|
"vite": "^7.2.4",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"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"
|
|
}
|
|
},
|
|
"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"
|
|
}
|
|
} |