forked from sxnney/bun-compression
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.41 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
87
88
89
90
{
"name": "hono-compress",
"description": "Compression plugin for Hono working with Bun",
"version": "1.0.2",
"type": "module",
"author": {
"name": "Walter Purcaro",
"url": "https://github.com/vuolter"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vuolter/hono-compress.git"
},
"keywords": [
"hono",
"hono compress",
"bun compress",
"compression",
"compress",
"node",
"deno",
"bun",
"edge",
"zstd",
"brotli",
"gzip",
"deflate"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"url": "https://github.com/vuolter/hono-compress",
"scripts": {
"build": "bun compile && tsdown",
"format": "prettier . --cache --experimental-cli --write",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint --cache-strategy content --concurrency auto --fix .",
"compile": "tsgo --build --noEmit",
"gendocs": "typedoc && prettier ./docs --cache --experimental-cli --log-level silent --write",
"postinstall": "npm install --force --ignore-scripts --package-lock-only --silent"
},
"peerDependencies": {
"hono": "^4.12.9"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@prettier/plugin-oxc": "^0.1.3",
"@socketsecurity/bun-security-scanner": "^1.1.2",
"@types/bun": "^1.3.11",
"@typescript/native-preview": "^7.0.0-dev.20260328.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-perfectionist": "^5.7.0",
"eslint-plugin-regexp": "^3.1.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-tsdoc": "^0.5.2",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"tsdown": "^0.21.6",
"typedoc": "^0.28.18",
"typedoc-plugin-markdown": "^4.11.0",
"typedoc-theme-fresh": "^0.2.3",
"typescript-eslint": "^8.57.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.60.0"
},
"trustedDependencies": [
"esbuild",
"unrs-resolver"
],
"sideEffects": false
}