-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "@mmote/niimbluelib",
"version": "0.0.1-alpha.24",
"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": "npm run clean && npm run build",
"build": "tsc --build",
"parse-wireshark-dump": "npm run build && node utils/parse-wireshark-dump.mjs",
"parse-text-dump": "npm run 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"
}
}