-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.31 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.31 KB
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
{
"name": "vite-plugin-zip-file",
"version": "5.0.0",
"description": "Zip files at build time.",
"type": "module",
"main": "lib/index.cjs",
"files": [
"lib/*",
"LICENSE",
"package.json",
"README.md"
],
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"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.ts build && tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Ssis53/vite-plugin-zip.git"
},
"engines": {
"node": ">=20"
},
"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": {
"@rollup/plugin-node-resolve": "^15.2.0",
"@types/node": "^22.13.15",
"typescript": "^5.8.2",
"vite": "^7.2.0"
},
"peerDependencies": {
"vite": ">=2.0.0"
}
}