forked from MultiMote/niimbluelib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "@mmote/niimbluelib",
"version": "0.0.1-alpha.23",
"description": "Library for the communication with NIIMBOT printers",
"keywords": [
"reverse-engineering",
"thermal-printer",
"label-printer",
"niimbot",
"niimbot-d110",
"niimbot-b1",
"bluetooth",
"serial",
"capacitor"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/MultiMote/niimbluelib.git"
},
"author": "MultiMote",
"license": "MIT",
"private": false,
"scripts": {
"clean-build": "yarn clean && yarn build",
"build": "tsc --build",
"parse-wireshark-dump": "yarn build && node utils/parse-wireshark-dump.mjs",
"parse-text-dump": "yarn build && node utils/parse-text-dump.mjs",
"clean": "node clean-dist.mjs",
"gen-printer-models": "node utils/gen-printer-models.js > src/printer_models.ts"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@types/w3c-web-serial": "^1.0.6",
"@types/web-bluetooth": "^0.0.20",
"typescript": "^5.4.5"
},
"dependencies": {
"@capacitor-community/bluetooth-le": "^6.0.2",
"@capacitor/core": "^6.0.0",
"async-mutex": "^0.5.0",
"crc-32": "^1.2.2",
"eventemitter3": "^5.0.1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}