-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 962 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 962 Bytes
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
{
"name": "@chneau/elysia-compression",
"version": "1.0.11",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Elysia compression plugin",
"keywords": ["elysia", "compression"],
"author": "chneau",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chneau/elysia-compression.git"
},
"files": ["dist"],
"scripts": {
"build": "bun _build.ts",
"npm:fix": "npm pkg fix",
"npm:publish": "bun run build && npm publish",
"npm:publish:dry-run": "bun run build && npm publish --dry-run",
"upgrade": "npm-check-updates --upgrade --install=always --packageManager=bun",
"check": "bun run clean; biome check --write --unsafe .",
"lint": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "bun test --watch"
},
"dependencies": {
"elysia": "^1.1.9"
},
"devDependencies": {
"@elysiajs/static": "^1.1.0",
"@types/bun": "^1.1.8",
"bun-plugin-dts": "^0.2.3",
"typescript": "^5.5.4"
}
}