-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 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
{
"name": "elysia-compression",
"version": "0.0.7",
"description": "Compression plugin for Elysia",
"author": {
"name": "Gusb3ll",
"url": "https://github.com/gusb3ll",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/gusb3ll/elysia-compression"
},
"exports": {
"bun": "./dist/index.js",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"import": "./dist/index.js",
"default": "./dist/cjs/index.js"
},
"types": "./src/index.ts",
"url": "https://github.com/gusb3ll/elysia-compression",
"keywords": [
"elysia",
"compression"
],
"license": "MIT",
"scripts": {
"dev": "bun run --hot example/index.ts",
"build": "rm -rf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"test": "bun test",
"release": "npm run build && npm publish --access public",
"fmt": "prettier --write ."
},
"dependencies": {
"compressible": "2.0.18"
},
"devDependencies": {
"@elysiajs/stream": "0.7.2",
"@types/compressible": "2.0.2",
"bun-types": "1.0.14",
"elysia": "0.7.29",
"eslint": "8.54.0",
"prettier": "3.1.0",
"typescript": "5.3.2"
},
"peerDependencies": {
"elysia": ">= 0.7.15"
},
"prettier": {
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2,
"semi": false,
"arrowParens": "avoid"
}
}