-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "bambu-node",
"version": "3.22.21",
"description": "A node.js library for connecting to and receiving data from Bambu Lab printers through their MQTT servers.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/THE-SIMPLE-MARK/bambu-node.git"
},
"bugs": {
"url": "https://github.com/THE-SIMPLE-MARK/bambu-node/issues"
},
"homepage": "https://github.com/THE-SIMPLE-MARK/bambu-node#readme",
"keywords": [
"bambu",
"bambulab",
"typescript",
"types",
"client"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"format": "prettier --write ."
},
"author": "SIMPLE MARK",
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.4.2",
"@types/node": "^20.10.6",
"prettier": "^3.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"eventemitter3": "^5.0.1",
"mqtt": "^5.3.4"
}
}