-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 814 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 814 Bytes
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": "bambu-js",
"version": "3.0.1",
"description": "Tools to interact with Bambu Lab printers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"type": "module",
"keywords": [
"bambu",
"printer",
"mqtt",
"ftp",
"camera"
],
"author": {
"name": "Andrew Lemons",
"url": "https://github.com/AndrewLemons"
},
"license": "MIT",
"scripts": {
"build": "tsc -p . && tsc-alias",
"format": "prettier --write ."
},
"dependencies": {
"basic-ftp": "^5.0.5",
"mqtt": "^5.13.3",
"tsc-alias": "^1.8.16"
},
"devDependencies": {
"@types/node": "^24.1.0",
"dotenv": "^17.2.1",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@9.7.0"
}