71 lines
1.8 KiB
JSON
71 lines
1.8 KiB
JSON
|
|
{
|
||
|
|
"name": "vite-plugin-remote-assets",
|
||
|
|
"type": "module",
|
||
|
|
"version": "0.6.0",
|
||
|
|
"packageManager": "pnpm@9.14.4",
|
||
|
|
"description": "Bundles your assets from remote urls with your app",
|
||
|
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
||
|
|
"license": "MIT",
|
||
|
|
"funding": "https://github.com/sponsors/antfu",
|
||
|
|
"homepage": "https://github.com/antfu/vite-plugin-remote-assets#readme",
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "git+https://github.com/antfu/vite-plugin-remote-assets.git"
|
||
|
|
},
|
||
|
|
"bugs": {
|
||
|
|
"url": "https://github.com/antfu/vite-plugin-remote-assets/issues"
|
||
|
|
},
|
||
|
|
"keywords": [
|
||
|
|
"vite-plugin"
|
||
|
|
],
|
||
|
|
"sideEffects": false,
|
||
|
|
"exports": {
|
||
|
|
".": {
|
||
|
|
"import": "./dist/index.js",
|
||
|
|
"require": "./dist/index.cjs"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"main": "dist/index.js",
|
||
|
|
"module": "dist/index.js",
|
||
|
|
"types": "dist/index.d.ts",
|
||
|
|
"files": [
|
||
|
|
"dist"
|
||
|
|
],
|
||
|
|
"scripts": {
|
||
|
|
"prepublishOnly": "nr build",
|
||
|
|
"dev": "nr build --watch",
|
||
|
|
"start": "esno src/index.ts",
|
||
|
|
"build": "tsup src/index.ts --format cjs,esm --dts",
|
||
|
|
"release": "bumpp --commit --push --tag && npm publish",
|
||
|
|
"lint": "eslint .",
|
||
|
|
"test": "vitest"
|
||
|
|
},
|
||
|
|
"peerDependencies": {
|
||
|
|
"vite": ">=5.0.0"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@antfu/utils": "^0.7.10",
|
||
|
|
"axios": "^1.7.8",
|
||
|
|
"blueimp-md5": "^2.19.0",
|
||
|
|
"debug": "^4.3.7",
|
||
|
|
"fs-extra": "^11.2.0",
|
||
|
|
"magic-string": "^0.30.14"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@antfu/eslint-config": "^3.11.2",
|
||
|
|
"@antfu/ni": "^0.23.1",
|
||
|
|
"@types/blueimp-md5": "^2.18.2",
|
||
|
|
"@types/debug": "^4.1.12",
|
||
|
|
"@types/follow-redirects": "^1.14.4",
|
||
|
|
"@types/fs-extra": "^11.0.4",
|
||
|
|
"@types/node": "^22.10.1",
|
||
|
|
"bumpp": "^9.8.1",
|
||
|
|
"eslint": "^9.16.0",
|
||
|
|
"esno": "^4.8.0",
|
||
|
|
"tsup": "^8.3.5",
|
||
|
|
"typescript": "^5.7.2",
|
||
|
|
"vite": "^6.0.2",
|
||
|
|
"vitest": "^2.1.8"
|
||
|
|
}
|
||
|
|
}
|