niimbotlib
Version:
Library for the communication with NIIMBOT printers
53 lines (52 loc) • 1.49 kB
JSON
{
"name": "niimbotlib",
"version": "0.0.1-alpha.1",
"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/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/withviktor/niimbotlib.git"
},
"author": "withviktor",
"license": "MIT",
"private": false,
"scripts": {
"clean-build": "npm run clean && npm run build",
"build": "tsc --build",
"build:bundle": "node bundle.mjs",
"parse-wireshark-dump": "npm run build && node tools/parse-wireshark-dump.mjs",
"parse-text-dump": "npm run build && node tools/parse-text-dump.mjs",
"clean": "node clean-dist.mjs",
"gen-printer-models": "node tools/gen-printer-models.js > src/printer_models.ts",
"gen-printer-models-md": "node tools/gen-printer-models-md.js > docs/documents/niimbot_models.md"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@types/w3c-web-serial": "^1.0.6",
"@types/web-bluetooth": "^0.0.20",
"esbuild": "0.25.8",
"typescript": "^5.4.5"
},
"dependencies": {
"@capacitor-community/bluetooth-le": "^7.1.0",
"@capacitor/core": "^7.2.0",
"async-mutex": "^0.5.0",
"crc-32": "^1.2.2",
"eventemitter3": "^5.0.1"
}
}