-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59070ef
commit a406215
Showing
5 changed files
with
1,320 additions
and
566 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
{ | ||
"cSpell.words": ["libvips", "middlewares", "npmrc", "picocolors"], | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"markdownlint.config": { | ||
"no-inline-html": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "vite-plugin-image-placeholder", | ||
"type": "module", | ||
"version": "1.0.0", | ||
"packageManager": "pnpm@8.11.0", | ||
"packageManager": "pnpm@8.15.5", | ||
"description": "🔥 Generate a placeholder image for the content area where the image resource is not ready.", | ||
"author": "pengzhanbo <[email protected]> (https://github.com/pengzhanbo)", | ||
"license": "MIT", | ||
|
@@ -23,10 +23,6 @@ | |
"import": { | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
}, | ||
"require": { | ||
"types": "./dist/index.d.cts", | ||
"default": "./dist/index.cjs" | ||
} | ||
} | ||
}, | ||
|
@@ -37,7 +33,7 @@ | |
"dist" | ||
], | ||
"engines": { | ||
"node": "^16.0.0 || ^18.0.0 || >=20.0.0" | ||
"node": "^18 || >=20.0.0" | ||
}, | ||
"scripts": { | ||
"build": "tsup", | ||
|
@@ -50,28 +46,28 @@ | |
"release": "bumpp package.json --execute=\"pnpm release:changelog\" --commit --all --push --tag && pnpm publish --access public" | ||
}, | ||
"peerDependencies": { | ||
"vite": ">=3.0.0" | ||
"vite": ">=4.0.0" | ||
}, | ||
"dependencies": { | ||
"debug": "^4.3.4", | ||
"lru-cache": "^10.1.0", | ||
"magic-string": "^0.30.5", | ||
"lru-cache": "^10.2.0", | ||
"magic-string": "^0.30.8", | ||
"path-to-regexp": "^6.2.1", | ||
"picocolors": "^1.0.0", | ||
"rgb-hex": "^4.1.0", | ||
"sharp": "^0.33.0" | ||
"sharp": "^0.33.3" | ||
}, | ||
"devDependencies": { | ||
"@pengzhanbo/eslint-config": "^1.2.4", | ||
"@pengzhanbo/eslint-config": "^1.7.0", | ||
"@types/debug": "^4.1.12", | ||
"@types/node": "^20.10.2", | ||
"@types/node": "^20.12.2", | ||
"@types/sharp": "^0.32.0", | ||
"bumpp": "^9.2.0", | ||
"bumpp": "^9.4.0", | ||
"conventional-changelog-cli": "^4.1.0", | ||
"eslint": "^8.55.0", | ||
"tsup": "^8.0.1", | ||
"typescript": "^5.3.2", | ||
"vite": "^5.0.4", | ||
"vitest": "^0.34.6" | ||
"eslint": "^8.57.0", | ||
"tsup": "^8.0.2", | ||
"typescript": "^5.4.3", | ||
"vite": "^5.2.7", | ||
"vitest": "^1.4.0" | ||
} | ||
} |
Oops, something went wrong.