-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.79 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
{
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"types": "./dist/index.d.ts",
"name": "@masx200/http-https-http2-polyglot",
"version": "2.1.0",
"main": "./dist/index.js",
"scripts": {
"generate": "powershell ./generate-ssl-cert.cmd || sh ./generate-ssl-cert.cmd",
"test": " vitest run",
"open": "node --experimental-modules ./test/open.js",
"build": "vite build ",
"extract": "api-extractor run --local",
"serve": "node --experimental-modules ./test/serve.js",
"format": "prettier --write *.md *.json ./**/*.js */**.ts",
"curl": "sh ./curl.sh"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"http",
"https",
"multiplex",
"polyglot",
"http2"
],
"dependencies": {},
"devDependencies": {
"websocket-stream": "^5.5.2",
"undici": "^5.8.2",
"vitest": "^0.24.0",
"@types/node": "^18.0.0",
"cross-fetch": "^3.1.5",
"got": "^12.3.1",
"open": "^8.4.0",
"tslib": "^2.0.1",
"prettier": "^2.7.1",
"rollup-plugin-ts": "^3.0.2",
"typescript": "^4.7.4",
"vite": "^3.0.8",
"@types/ws": "^8.5.3",
"ws": "^8.8.1"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/masx200/http-https-http2-polyglot.git"
},
"author": "masx200 <34191203+masx200@users.noreply.github.com>",
"bugs": {
"url": "https://github.com/masx200/http-https-http2-polyglot/issues"
},
"homepage": "https://github.com/masx200/http-https-http2-polyglot#readme",
"description": "Serve http and https and http2 connections over the same port with node.js"
}