-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "vite-plugin-zip-pack",
"description": "Vite plugin for packing distribution/build folder into a zip file.",
"version": "1.2.4",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.mjs"
}
},
"author": "Darko Ceranac (https://github.com/7th-Cyborg)",
"contributors": [
"Reiner Bamberger (https://github.com/reinerBa/)"
],
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"zip",
"pack",
"vite",
"plugin",
"vite-plugin",
"files",
"archive",
"output",
"packager",
"bundler",
"compressing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/7th-Cyborg/vite-plugin-zip-pack"
},
"bugs": {
"url": "https://github.com/7th-Cyborg/vite-plugin-zip-pack/issues"
},
"homepage": "https://github.com/7th-Cyborg/vite-plugin-zip-pack#readme",
"scripts": {
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && npm run renameESM",
"renameESM": "node -e \"require('fs').rename('dist/esm/index.js', 'dist/esm/index.mjs', function(err) { if (err) console.log(err); console.log('Build successful!') })\"",
"test": "vitest"
},
"dependencies": {
"jszip": "^3.10.1"
},
"peerDependencies": {
"vite": ">=2.x"
},
"devDependencies": {
"typescript": "^5.4.2",
"vitest": "^1.2.1"
}
}