Files
2026-01-13 17:47:39 +08:00

59 lines
1.3 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "@baota/vite-plugin-path-random",
"version": "1.0.0",
"description": "Vite插件为JS/CSS文件路径添加随机数参数解决浏览器缓存问题",
"type": "module",
"main": "src/index.js",
"exports": {
".": {
"import": "./src/index.js",
"require": "./src/index.js"
}
},
"files": [
"src",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"test": "vitest",
"test:watch": "vitest --watch",
"build": "echo 'No build step required for this plugin'",
"lint": "eslint src --ext .js",
"lint:fix": "eslint src --ext .js --fix"
},
"keywords": [
"vite",
"plugin",
"random",
"cache",
"bust",
"js",
"css",
"html",
"build-tool"
],
"author": "AI Assistant",
"license": "MIT",
"peerDependencies": {
"vite": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"vitest": "^1.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-username/vite-plugin-random-cache.git"
},
"bugs": {
"url": "https://github.com/your-username/vite-plugin-random-cache/issues"
},
"homepage": "https://github.com/your-username/vite-plugin-random-cache#readme",
"dependencies": {
"glob": "^11.0.3"
}
}