-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.18 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.18 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
{
"name": "rsocket-h3-client",
"version": "1.0.0-alpha.1",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nExtendSoftware/rsocket-h3-client.git"
},
"author": "Original authors rsocket-js, standalone packaging by @veltmanj",
"description": "HTTP/3 client transport for rsocket-js and rsocket-broker-client-js",
"keywords": [
"rsocket",
"http3",
"quic",
"h3",
"client"
],
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf ./dist ./coverage",
"compile": "tsc -p tsconfig.build.json",
"prepack": "npm run build",
"test": "jest --forceExit"
},
"dependencies": {
"@currentspace/http3": "^0.7.1",
"rsocket-core": "^1.0.0-alpha.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^17.0.5",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"rimraf": "~3.0.2",
"ts-jest": "^29.2.5",
"typescript": "~4.5.4"
},
"engines": {
"node": ">=18.0.0"
}
}