-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 2.61 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "unplugin-zip-pack",
"type": "module",
"version": "1.0.3",
"description": "Zip your build files with JSZip, powered by unplugin",
"author": {
"name": "iamspark1e",
"url": "https://github.com/iamspark1e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamspark1e/unplugin-zip-pack.git"
},
"license": "MIT",
"keywords": [
"unplugin",
"vite",
"webpack",
"rollup",
"zip",
"pack",
"bundle"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"require": "./dist/vite.cjs",
"import": "./dist/vite.js"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"require": "./dist/webpack.cjs",
"import": "./dist/webpack.js"
},
"./rollup": {
"types": "./dist/rollup.d.ts",
"require": "./dist/rollup.cjs",
"import": "./dist/rollup.js"
},
"./esbuild": {
"types": "./dist/esbuild.d.ts",
"require": "./dist/esbuild.cjs",
"import": "./dist/esbuild.js"
},
"./nuxt": {
"types": "./dist/nuxt.d.ts",
"require": "./dist/nuxt.cjs",
"import": "./dist/nuxt.js"
},
"./types": {
"types": "./dist/types.d.ts",
"require": "./dist/types.cjs",
"import": "./dist/types.js"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"build:fix": "esno scripts/postbuild.ts",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"test": "vitest",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "git push --follow-tags",
"prepare": "husky install"
},
"dependencies": {
"jszip": "^3.10.1",
"unplugin": "^1.3.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitejs/plugin-react": "^4.3.1",
"chalk": "^5.2.0",
"conventional-changelog-cli": "^3.0.0",
"eslint": "^8.42.0",
"esno": "^0.17.0",
"fast-glob": "^3.2.12",
"husky": "^8.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^3.29.5",
"tsup": "^7.2.0",
"typescript": "^5.1.3",
"vite": "^4.5.5",
"vitest": "^2.0.5",
"webpack": "^5.85.0"
}
}