-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "node-signalr",
"version": "3.0.0",
"description": "A signalR client for node.js.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"author": "Alex Wei<https://github.com/alex8088>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alex8088/node-signalr.git"
},
"bugs": {
"url": "https://github.com/alex8088/node-signalr/issues"
},
"homepage": "https://github.com/alex8088/node-signalr#readme",
"keywords": [
"signalr",
"websockets"
],
"scripts": {
"format": "prettier --write .",
"lint": "eslint --ext .ts src/**",
"typecheck": "tsc --noEmit",
"build": "npm run lint && unbuild"
},
"devDependencies": {
"@types/node": "^16.18.23",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"typescript": "^5.0.4",
"unbuild": "^1.2.1"
},
"dependencies": {
"@tiny-libs/typed-event-emitter": "^1.0.0",
"ws": "^8.13.0"
}
}