forked from sunneydev/bun-compression
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.24 KB
/
package.json
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
{
"name": "hono-compress",
"type": "module",
"version": "0.7.0",
"description": "Compression plugin for Hono working with Bun",
"author": {
"name": "Walter Purcaro",
"url": "https://github.com/vuolter"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vuolter/hono-compress"
},
"keywords": [
"hono",
"compression",
"node",
"deno",
"bun",
"edge",
"zstd",
"brotli",
"gzip",
"deflate"
],
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"url": "https://github.com/vuolter/hono-compress",
"scripts": {
"update": "bun update --latest && npm install --force --no-fund --package-lock-only",
"build": "pkgroll --clean-dist --minify",
"test": "bun test",
"format": "prettier . --write",
"lint": "eslint --cache --cache-location node_modules/.cache/eslint --cache-strategy content --fix .",
"typecheck": "tsc --noEmit",
"lock": "bun install --silent && npm install --force --no-audit --no-fund --package-lock-only"
},
"peerDependencies": {
"hono": "^4.6.13"
},
"dependencies": {
"@mongodb-js/zstd": "^2.0.0",
"brotli-wasm": "^3.0.1"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/bun": "^1.1.14",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.5.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-perfectionist": "^4.2.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-unicorn": "^56.0.1",
"pkgroll": "^2.5.1",
"prettier": "^4.0.0-alpha.10",
"type-fest": "^4.30.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.28.1"
}
}