-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.19 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.19 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@adjfut/vite-plugin-zip-pack",
"type": "module",
"version": "2.0.3",
"description": "Vite plugin for packing distribution/build folder into a zip file.",
"author": "153264",
"license": "MIT",
"homepage": "https://github.com/153264/vite-plugin-zip-pack#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/153264/vite-plugin-zip-pack.git"
},
"bugs": {
"url": "https://github.com/153264/vite-plugin-zip-pack/issues"
},
"keywords": [
"zip",
"pack",
"vite",
"plugin",
"vite-plugin",
"files",
"archive",
"output",
"packager",
"bundler",
"compressing"
],
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "pnpm run build",
"prepare": "husky",
"build": "tsup src/index.ts",
"lint:check": "eslint {src,docs,tests}/**",
"lint:fix": "eslint {src,docs,tests}/** --fix",
"format:check": "prettier --check **/*.{ts,json}",
"format:fix": "prettier --write **/*.{ts,json}",
"commitlint": "commitlint --strict --edit",
"test": "vitest",
"test:coverage": "vitest --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"vite": ">=2.x"
},
"dependencies": {
"jszip": "^3.10.1"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "4.0.16",
"chalk": "^5.6.2",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"tsup": "^8.5.1",
"typescript": "^5.4.2",
"vitepress": "^1.6.4",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public"
}
}