-
-
Notifications
You must be signed in to change notification settings - Fork 802
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.45 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
79
80
81
82
83
84
85
86
{
"name": "pako",
"description": "zlib port to javascript - fast, modularized, with browser support",
"version": "3.0.2",
"keywords": [
"zlib",
"deflate",
"inflate",
"gzip"
],
"contributors": [
"Andrei Tuputcyn (https://github.com/andr83)",
"Vitaly Puzrin (https://github.com/puzrin)",
"Friedel Ziegelmayer (https://github.com/dignifiedquire)",
"Kirill Efimov (https://github.com/Kirill89)",
"Jean-loup Gailly",
"Mark Adler"
],
"files": [
"dist/"
],
"license": "(MIT AND Zlib)",
"repository": "nodeca/pako",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/puzrin"
},
{
"type": "github",
"url": "https://github.com/sponsors/nodeca"
}
],
"main": "./dist/pako.cjs.js",
"module": "./dist/pako.mjs",
"types": "./dist/pako.d.ts",
"exports": {
".": {
"types": "./dist/pako.d.ts",
"import": "./dist/pako.mjs",
"require": "./dist/pako.cjs.js"
},
"./browser": {
"types": "./dist/pako.d.ts",
"import": "./dist/browser/pako.esm.min.mjs",
"require": "./dist/browser/pako.umd.min.js",
"default": "./dist/browser/pako.umd.min.js"
},
"./browser/deflate": {
"types": "./dist/pako.d.ts",
"import": "./dist/browser/pako_deflate.esm.min.mjs",
"require": "./dist/browser/pako_deflate.umd.min.js",
"default": "./dist/browser/pako_deflate.umd.min.js"
},
"./browser/inflate": {
"import": "./dist/browser/pako_inflate.esm.min.mjs",
"require": "./dist/browser/pako_inflate.umd.min.js",
"default": "./dist/browser/pako_inflate.umd.min.js"
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint .",
"type-check": "tsc --noEmit",
"test": "npm run lint && npm run build && npm run type-check && node --test",
"coverage": "npm run lint && c8 -r text -r html node --test",
"build": "node support/build-dist.mjs",
"build_fixtures": "node support/build_fixtures.mjs",
"doc": "typedoc",
"gh-doc": "npm run doc && gh-pages -d doc -f",
"prepack": "npm test && npm run build && npm run doc",
"postpublish": "npm run gh-doc"
},
"devDependencies": {
"@types/node": "^26.0.0",
"c8": "^11.0.0",
"eslint": "^9.39.4",
"gh-pages": "^6.3.0",
"neostandard": "^0.13.0",
"rollup": "^4.62.2",
"rollup-plugin-dts": "^6.4.1",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vite": "^8.0.14"
}
}