-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 1.99 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "mqtts",
"version": "1.5.0",
"description": "MQTT client in Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Nerixyz/mqtts"
},
"bugs": {
"url": "https://github.com/Nerixyz/mqtts/issues"
},
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"prepare": "npm run build",
"lint-fix": "eslint --fix --ext .js,.ts src/**",
"lint": "eslint --ext .js,.ts src/**",
"format": "prettier -w . --loglevel warn",
"check-format": "prettier -c .",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"precommit": "pnpm run typecheck && pnpm run lint && pnpm run format"
},
"dependencies": {
"@types/ws": "^8.5.10",
"debug": "^4.3.4",
"eventemitter3": "^5.0.1",
"socks": "^2.8.1",
"ts-custom-error": "^3.3.1",
"ts-xor": "^1.3.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@swc/core": "^1.4.12",
"@swc/jest": "^0.2.36",
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^7.1.8",
"@types/debug": "^4.1.12",
"@types/duplexify": "^3.6.4",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.9",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"chai": "^4.4.1 < 5",
"chai-as-promised": "^7.1.1",
"duplexify": "^4.1.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"sinon": "^17.0.1",
"ts-jest": "^29.1.2",
"typescript": "^5.4.4"
},
"keywords": [
"MQTT",
"subscribe",
"iot",
"tls"
],
"author": "nerixyz",
"license": "MIT"
}