-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.3 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.3 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "rsocket-broker-client-js",
"version": "0.0.32",
"license": "Apache-2.0",
"workspaces": [
"examples/react-vite",
"examples/angular-standalone"
],
"scripts": {
"build": "nx build rsocket-broker-client-js",
"lint": "nx lint rsocket-broker-client-js",
"prepack": "npm run build",
"test": "nx test rsocket-broker-client-js"
},
"files": [
"dist/rsocket-broker-client-js/src",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nExtendSoftware/rsocket-broker-client-js.git"
},
"author": "Original authors rsocket-js, additions by @veltmanj",
"description": "RSocket Broker Client JS",
"keywords": [
"rsocket",
"broker",
"client"
],
"sideEffects": false,
"dependencies": {
"buffer": "^6.0.3",
"rsocket-adapter-rxjs": "^1.0.0-alpha.4",
"rsocket-composite-metadata": "^1.0.0-alpha.3",
"rsocket-core": "^1.0.0-alpha.3",
"rsocket-websocket-client": "^1.0.0-alpha.3",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@nx/eslint-plugin": "16.6.0",
"@nx/js": "16.6.0",
"@nx/linter": "16.6.0",
"@nx/vite": "16.6.0",
"@nx/workspace": "16.6.0",
"@types/node": "18.7.1",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitest/coverage-c8": "~0.32.0",
"@vitest/ui": "~0.32.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"nx": "16.7.4",
"nx-cloud": "latest",
"prettier": "^2.6.2",
"typescript": "~5.1.3",
"vite": "~4.3.9",
"vitest": "~0.32.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"type": "module",
"exports": {
".": {
"types": "./dist/rsocket-broker-client-js/src/index.d.ts",
"import": "./dist/rsocket-broker-client-js/src/index.js",
"default": "./dist/rsocket-broker-client-js/src/index.js"
}
},
"main": "./dist/rsocket-broker-client-js/src/index.js",
"module": "./dist/rsocket-broker-client-js/src/index.js",
"types": "./dist/rsocket-broker-client-js/src/index.d.ts",
"typings": "./dist/rsocket-broker-client-js/src/index.d.ts",
"nx": {
"targets": {}
},
"engines": {
"node": ">=18.0.0"
}
}