@kubb/agent 4.34.0 → 4.35.0

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.
@@ -0,0 +1,127 @@
1
+ {
2
+ "name": "fflate",
3
+ "version": "0.8.2",
4
+ "description": "High performance (de)compression in an 8kB package",
5
+ "main": "./lib/index.cjs",
6
+ "module": "./esm/browser.js",
7
+ "types": "./lib/index.d.ts",
8
+ "unpkg": "./umd/index.js",
9
+ "jsdelivr": "./umd/index.js",
10
+ "browser": {
11
+ "./lib/node-worker.cjs": "./lib/worker.cjs"
12
+ },
13
+ "exports": {
14
+ ".": {
15
+ "node": {
16
+ "import": {
17
+ "types": "./esm/index.d.mts",
18
+ "default": "./esm/index.mjs"
19
+ },
20
+ "require": {
21
+ "types": "./lib/node.d.cts",
22
+ "default": "./lib/node.cjs"
23
+ }
24
+ },
25
+ "import": {
26
+ "types": "./esm/browser.d.ts",
27
+ "default": "./esm/browser.js"
28
+ },
29
+ "require": {
30
+ "types": "./lib/browser.d.cts",
31
+ "default": "./lib/browser.cjs"
32
+ }
33
+ },
34
+ "./node": {
35
+ "import": {
36
+ "types": "./esm/index.d.mts",
37
+ "default": "./esm/index.mjs"
38
+ },
39
+ "require": {
40
+ "types": "./lib/node.d.cts",
41
+ "default": "./lib/node.cjs"
42
+ }
43
+ },
44
+ "./browser": {
45
+ "import": {
46
+ "types": "./esm/browser.d.ts",
47
+ "default": "./esm/browser.js"
48
+ },
49
+ "require": {
50
+ "types": "./lib/browser.d.cts",
51
+ "default": "./lib/browser.cjs"
52
+ }
53
+ }
54
+ },
55
+ "targets": {
56
+ "main": false,
57
+ "module": false,
58
+ "browser": false,
59
+ "types": false
60
+ },
61
+ "sideEffects": false,
62
+ "homepage": "https://101arrowz.github.io/fflate",
63
+ "repository": "https://github.com/101arrowz/fflate",
64
+ "bugs": {
65
+ "email": "arjunbarrett@gmail.com",
66
+ "url": "https://github.com/101arrowz/fflate/issues"
67
+ },
68
+ "author": "Arjun Barrett <arjunbarrett@gmail.com>",
69
+ "license": "MIT",
70
+ "keywords": [
71
+ "gzip",
72
+ "gunzip",
73
+ "deflate",
74
+ "inflate",
75
+ "compression",
76
+ "decompression",
77
+ "zlib",
78
+ "pako",
79
+ "jszip",
80
+ "browser",
81
+ "node.js",
82
+ "tiny",
83
+ "fast",
84
+ "zip",
85
+ "unzip",
86
+ "non-blocking"
87
+ ],
88
+ "scripts": {
89
+ "build": "npm run build:lib && npm run build:docs && npm run build:demo",
90
+ "script": "node -r ts-node/register scripts/$SC.ts",
91
+ "build:lib": "tsc && tsc --project tsconfig.esm.json && npm run build:rewrite && npm run build:umd",
92
+ "build:umd": "SC=buildUMD npm run script",
93
+ "build:rewrite": "SC=rewriteBuilds npm run script",
94
+ "build:demo": "tsc --project tsconfig.demo.json && parcel build demo/index.html --no-cache --public-url \"./\" && SC=cpGHPages npm run script",
95
+ "build:docs": "typedoc --plugin typedoc-plugin-markdown --hideBreadcrumbs --readme none --disableSources --excludePrivate --excludeProtected --githubPages false --out docs/ src/index.ts",
96
+ "test": "TS_NODE_PROJECT=test/tsconfig.json uvu -b -r ts-node/register test",
97
+ "prepack": "npm run build && npm run test"
98
+ },
99
+ "devDependencies": {
100
+ "@parcel/service-worker": "^2.9.3",
101
+ "@types/node": "^14.11.2",
102
+ "@types/pako": "*",
103
+ "@types/react": "^18.2.21",
104
+ "@types/react-dom": "^18.2.7",
105
+ "jszip": "^3.5.0",
106
+ "pako": "*",
107
+ "parcel": "^2.9.3",
108
+ "preact": "^10.17.1",
109
+ "react": "^18.2.0",
110
+ "react-dom": "^18.2.0",
111
+ "simple-git": "^3.19.1",
112
+ "terser": "^5.3.8",
113
+ "tiny-inflate": "*",
114
+ "ts-node": "^10.9.1",
115
+ "typedoc": "^0.25.0",
116
+ "typedoc-plugin-markdown": "^3.16.0",
117
+ "typescript": "^5.2.2",
118
+ "uvu": "^0.3.3",
119
+ "uzip": "*"
120
+ },
121
+ "alias": {
122
+ "react": "preact/compat",
123
+ "react-dom": "preact/compat",
124
+ "buffer": false,
125
+ "process": false
126
+ }
127
+ }