-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.27 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "vite-plugin-image-placeholder",
"version": "0.2.7",
"description": "🔥 Generate a placeholder image for the content area where the image resource is not ready.",
"keywords": [
"vite",
"plugin",
"vite-plugin",
"image",
"placeholder",
"image-placeholder"
],
"repository": {
"type": "git",
"url": "https://github.com/pengzhanbo/vite-plugin-image-placeholder"
},
"license": "GPL-3.0",
"author": "pengzhanbo <[email protected]> (https://github.com/pengzhanbo)",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"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"
},
"prettier": "@pengzhanbo/prettier-config",
"dependencies": {
"debug": "^4.3.4",
"lru-cache": "^9.1.1",
"magic-string": "^0.30.0",
"path-to-regexp": "^6.2.1",
"rgb-hex": "^4.0.1",
"sharp": "^0.32.0"
},
"devDependencies": {
"@pengzhanbo/eslint-config-ts": "^0.3.4",
"@pengzhanbo/prettier-config": "^0.3.4",
"@types/debug": "^4.1.7",
"@types/node": "^18.16.0",
"@types/sharp": "^0.31.1",
"bumpp": "^9.1.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.39.0",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vite": "^4.3.1",
"vitest": "^0.30.1"
},
"peerDependencies": {
"vite": ">=3.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": "^14.18.0 || >=16"
},
"tsup": {
"entry": [
"src/index.ts"
],
"sourcemap": false,
"dts": true,
"splitting": false,
"clean": true,
"format": [
"esm",
"cjs"
]
}
}