web-jszipp 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +14 -13
package/package.json CHANGED
@@ -1,14 +1,16 @@
1
1
  {
2
2
  "name": "web-jszipp",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Fast, compact, and defensive ZIP reader and writer for modern browser apps, with safe defaults, Web Streams, ZIP64, metadata, and unsafe-archive guards.",
5
5
  "license": "MIT",
6
6
  "private": false,
7
- "packageManager": "pnpm@10.33.2",
8
7
  "type": "module",
9
8
  "sideEffects": false,
10
- "homepage": "https://jszipp.github.io/JSZipp",
11
- "repository": "https://github.com/jszipp/jszipp",
9
+ "homepage": "https://jszipp.github.io/JSZipp/pages/",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/JSZipp/JSZipp"
13
+ },
12
14
  "bugs": {
13
15
  "email": "cyfung1031+jszipp@gmail.com",
14
16
  "url": "https://github.com/jszipp/jszipp/issues"
@@ -57,13 +59,6 @@
57
59
  "LICENSE",
58
60
  "README.md"
59
61
  ],
60
- "scripts": {
61
- "build": "node scripts/clean-dist.mjs && rspack build && tsc -p tsconfig.types.json && node scripts/prune-dist-types.mjs",
62
- "prepack": "pnpm run typecheck && pnpm run build && pnpm run test",
63
- "test": "vitest run",
64
- "typecheck": "tsc --noEmit",
65
- "pack:dry": "pnpm pack --dry-run"
66
- },
67
62
  "devDependencies": {
68
63
  "@rspack/cli": "^2.0.5",
69
64
  "@rspack/core": "^2.0.5",
@@ -72,11 +67,17 @@
72
67
  "@types/yazl": "^3.3.1",
73
68
  "typescript": "^5.4.0",
74
69
  "vitest": "^4.1.7",
75
- "web-streams-polyfill": "^4.3.0",
76
70
  "yauzl": "3.2.0",
77
71
  "yazl": "^3.3.1"
78
72
  },
79
73
  "engines": {
74
+ "pnpm": ">=10.33.2",
80
75
  "node": ">=20"
76
+ },
77
+ "scripts": {
78
+ "build": "node scripts/clean-dist.mjs && rspack build && tsc -p tsconfig.types.json && node scripts/prune-dist-types.mjs",
79
+ "test": "vitest run",
80
+ "typecheck": "tsc --noEmit",
81
+ "pack:dry": "pnpm pack --dry-run"
81
82
  }
82
- }
83
+ }