-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 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
{
"name": "@mmote/niimbluelib-headless",
"version": "0.0.6",
"description": "Headless clients for niimbluelib. Command line interface, simple REST server are also included",
"keywords": [
"command-line",
"thermal-printer",
"label-printer",
"niimbot",
"niimbot-d110",
"niimbot-b1",
"bluetooth",
"serial"
],
"repository": {
"type": "git",
"url": "https://github.com/MultiMote/niimbluelib-headless.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"bin": {
"niimblue-cli": "./cli.mjs"
},
"author": "MultiMote",
"license": "MIT",
"private": false,
"scripts": {
"clean-build": "yarn clean && yarn build",
"build": "tsc --build",
"cli": "tsc --build && node cli.mjs"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@types/pngjs": "^6.0.5",
"typescript": "^5.4.5"
},
"dependencies": {
"bluetooth-serial-port": "^3.0.2",
"serialport": "^12.0.0",
"@commander-js/extra-typings": "^12.1.0",
"@mmote/niimbluelib": "0.0.1-alpha.22",
"async-mutex": "^0.5.0",
"commander": "^12.1.0",
"pngjs": "^7.0.0",
"zod": "^3.23.8"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}