-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.97 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
{
"name": "unplugin-compress",
"version": "0.1.3",
"description": "A common compress plugin for Vite/Webpack/Rollup(etc...) powered by Unplugin",
"keywords": [
"unplugin",
"vite",
"webpack",
"rollup"
],
"author": "rogerleung0411<[email protected]>",
"homepage": "https://github.com/rogerleung0411/unplugin-compress#readme",
"bugs": {
"url": "https://github.com/rogerleung0411/unplugin-compress/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogerleung0411/unplugin-compress.git"
},
"license": "MIT",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./vite": {
"require": "./dist/vite.js",
"import": "./dist/vite.mjs"
},
"./webpack": {
"require": "./dist/webpack.js",
"import": "./dist/webpack.mjs"
},
"./rollup": {
"require": "./dist/rollup.js",
"import": "./dist/rollup.mjs"
},
"./types": {
"require": "./dist/types.js",
"import": "./dist/types.mjs"
},
"./*": "./*"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"postbuild": "esno scripts/postbuild.ts",
"prerelease": "esno scripts/prerelease.ts",
"release": "bumpp --commit --push --tag && pnpm publish",
"postrelease": "esno scripts/postrelease.ts",
"start": "esno src/index.ts"
},
"dependencies": {
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"unplugin": "^0.2.18"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.176",
"@types/node": "^16.11.6",
"bumpp": "^7.1.1",
"esno": "^0.10.1",
"fast-glob": "^3.2.7",
"nodemon": "^2.0.14",
"rimraf": "^3.0.2",
"rollup": "^2.58.3",
"tsup": "^5.5.0",
"typescript": "^4.4.4",
"vite": "^2.6.13",
"webpack": "^5.60.0"
}
}