-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "@artcom/bootstrap-client",
"version": "4.7.0",
"description": "A library which queries and processes bootstrap data from a bootstrap server.",
"main": "lib/main.js",
"files": [
"lib/"
],
"scripts": {
"format": "prettier --write src",
"lint": "eslint src --fix",
"build": "tsc",
"build:watch": "tsc -w",
"prepublishOnly": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/artcom/bootstrap-client.git"
},
"type": "commonjs",
"dependencies": {
"@artcom/logger": "^1.6.0",
"@artcom/mqtt-topping": "^4.0.0",
"axios": "^1.7.9"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@types/ws": "^8.5.13",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"license": "MIT",
"keywords": [
"bootstrap",
"mqtt",
"config"
]
}