-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.99 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "vite-plugin-image-placeholder",
"type": "module",
"version": "1.1.0",
"packageManager": "[email protected]",
"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",
"repository": {
"type": "git",
"url": "https://github.com/pengzhanbo/vite-plugin-image-placeholder"
},
"keywords": [
"vite",
"plugin",
"vite-plugin",
"image",
"placeholder",
"image-placeholder"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": "^18 || >=20.0.0"
},
"scripts": {
"build": "tsup",
"dev": "DEBUG=vite:plugin-image-placeholder vite example --config ./example/vite.config.ts",
"build:example": "DEBUG=vite:plugin-image-placeholder vite build example --config ./example/vite.config.ts",
"lint": "eslint .",
"test": "vitest run --reporter verbose",
"prepublishOnly": "pnpm run build",
"release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "bumpp package.json --execute=\"pnpm release:changelog\" --commit --all --push --tag && pnpm publish --access public"
},
"peerDependencies": {
"vite": ">=4.0.0"
},
"dependencies": {
"debug": "^4.3.4",
"lru-cache": "^10.2.0",
"magic-string": "^0.30.9",
"path-to-regexp": "^6.2.2",
"picocolors": "^1.0.0",
"rgb-hex": "^4.1.0",
"sharp": "^0.33.3"
},
"devDependencies": {
"@pengzhanbo/eslint-config": "^1.8.0",
"@types/debug": "^4.1.12",
"@types/node": "^20.12.5",
"bumpp": "^9.4.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^9.0.0",
"tsup": "^8.0.2",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vitest": "^1.4.0"
}
}