-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.29 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
{
"name": "@mntm/http-web",
"version": "1.0.0",
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"source": "./src/index.ts",
"exports": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts"
},
"author": {
"name": "Anton Petrov",
"email": "[email protected]",
"url": "https://petrov.engineer"
},
"description": "Deno-like http serve",
"license": "MIT",
"keywords": [
"server",
"serve",
"http",
"deno",
"uws",
"uwebsockets"
],
"homepage": "https://github.com/mntm-lib/http-web",
"bugs": "https://github.com/mntm-lib/http-web/issues",
"repository": {
"type": "git",
"url": "https://github.com/mntm-lib/http-web.git"
},
"scripts": {
"build": "nanobundle build"
},
"engines": {
"node": ">=16.5.0"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"dependencies": {
"undici": "^5.10.0",
"uws": "github:uNetworking/uWebSockets.js#v20.10.0"
},
"devDependencies": {
"@mntm/eslint-config": "^1.3.1",
"@types/node": "^18.7.16",
"eslint": "^8.23.0",
"nanobundle": "^0.0.28",
"typescript": "^4.8.3"
},
"resolutions": {
"esbuild": "0.15.7",
"typescript": "^4.8.3"
}
}