mirror of https://github.com/allinssl/allinssl
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
||
"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"
|
||
}
|
||
}
|