| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- {
- "name": "@zip.js/zip.js",
- "description": "A JavaScript library to zip and unzip files in the browser, Deno and Node.js",
- "author": "Gildas Lormeau",
- "license": "BSD-3-Clause",
- "version": "2.8.26",
- "type": "module",
- "keywords": [
- "zip",
- "unzip",
- "browser",
- "web",
- "aes-256",
- "aes-192",
- "aes-128",
- "zip-crypto",
- "encryption",
- "zip64",
- "web-streams",
- "compression-streams",
- "web-crypto",
- "web-workers",
- "deno",
- "node.js",
- "multi-core",
- "split-zip",
- "usdz",
- "deflate64",
- "wasm"
- ],
- "engines": {
- "deno": ">=1.0.0",
- "node": ">=18.0.0",
- "bun": ">=0.7.0"
- },
- "scripts": {
- "build": "npx rollup -c",
- "build-dev": "npx rollup -c rollup.config.dev.js",
- "build-doc-api": "npx typedoc",
- "build-doc-markdown": "npx typedoc --plugin typedoc-plugin-markdown --out ./docs",
- "test-deno": "cd ./tests && deno test --allow-read ./deno-runner.js",
- "test-node": "cd ./tests && node ./node-runner.js",
- "test-bun": "cd ./tests && bun test ./bun-runner.js",
- "test-firefox": "firefox http://localhost:8081/tests/ & npx http-server -p=8081 & wait $!",
- "test-chrome": "google-chrome http://localhost:8081/tests/ & npx http-server -p=8081 & wait $!"
- },
- "main": "./index.cjs",
- "module": "./index.js",
- "types": "./index.d.ts",
- "exports": {
- "./package.json": "./package.json",
- "./dist/zip-web-worker.js": "./dist/zip-web-worker.js",
- "./dist/zip-web-worker-native.js": "./dist/zip-web-worker-native.js",
- "./dist/zip-module.wasm": "./dist/zip-module.wasm",
- ".": {
- "import": {
- "types": "./index.d.ts",
- "default": "./index.js"
- },
- "require": {
- "types": "./index.d.ts",
- "default": "./index.cjs"
- }
- },
- "./index-native.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./index-native.js"
- },
- "require": {
- "types": "./index.d.ts",
- "default": "./index-native.cjs"
- }
- },
- "./index.min.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./index.min.js"
- }
- },
- "./index-native.min.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./index-native.min.js"
- }
- },
- "./lib/zip-core-reader.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./lib/zip-core-reader.js"
- }
- },
- "./lib/zip-core-writer.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./lib/zip-core-writer.js"
- }
- },
- "./lib/zip-fs.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./lib/zip-fs-wasm.js"
- }
- },
- "./lib/zip-fs-native.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./lib/zip-fs-native.js"
- }
- },
- "./lib/zip-core.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./lib/zip-core-wasm.js"
- }
- },
- "./lib/zip-core-native.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./lib/zip-core-native.js"
- }
- },
- "./lib/zip-fs-core.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./lib/zip-fs-core-wasm.js"
- }
- },
- "./lib/zip-fs-core-native.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./lib/zip-fs-core-native.js"
- }
- },
- "./lib/zip.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./lib/zip-wasm.js"
- }
- },
- "./lib/zip-native.js": {
- "import": {
- "types": "./index.d.ts",
- "default": "./lib/zip-native.js"
- }
- }
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/gildas-lormeau/zip.js.git"
- },
- "bugs": {
- "url": "https://github.com/gildas-lormeau/zip.js/issues"
- },
- "homepage": "https://gildas-lormeau.github.io/zip.js",
- "devDependencies": {
- "@rollup/plugin-replace": "^6.0.3",
- "@rollup/plugin-terser": "^1.0.0",
- "eslint": "^10.1.0",
- "http-server": "^14.1.1",
- "rollup": "^4.60.1",
- "typedoc": "^0.28.18",
- "typedoc-plugin-markdown": "^4.11.0"
- }
- }
|