-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1021 Bytes
/
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
{
"name": "vite-plugin-zip-file",
"version": "3.1.2",
"description": "zip files at build time.",
"type": "module",
"main": "lib/index.cjs",
"files": [
"lib/*",
"LICENSE",
"package.json",
"README.md"
],
"module": "lib/index.mjs",
"scripts": {
"dev": "vite",
"build": "vite build",
"build-d": "node --inspect-brk=9229 ./node_modules/vite/dist/node/cli.js build",
"build-plugin": "vite --config plugin.config.js build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Ssis53/vite-plugin-zip.git"
},
"keywords": [
"vite",
"zip",
"compress"
],
"author": "Shawn Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ssis53/vite-plugin-zip/issues"
},
"homepage": "https://github.com/Ssis53/vite-plugin-zip#readme",
"dependencies": {
"jszip": "^3.10.1"
},
"devDependencies": {
"vite": "^5.1.0",
"@rollup/plugin-node-resolve": "^15.2.0"
},
"peerDependencies": {
"vite": ">=2.0.0"
}
}