This repository has been archived on 2024-09-16. You can view files and clone it, but cannot push or open issues or pull requests.
niimblue-nightly/niimbluelib/package.json

30 lines
703 B
JSON
Raw Normal View History

2024-07-19 12:44:11 +03:00
{
"name": "@mmote/niimbluelib",
"version": "0.0.1",
"description": "Library for communicating with niimbot printers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"author": "MultiMote",
"license": "MIT",
"private": false,
"scripts": {
"clean-build": "yarn clean && yarn build",
"build": "tsc",
"test": "yarn build && node dist/test.js",
"clean": "node clean-dist.js"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@types/w3c-web-serial": "^1.0.6",
"@types/web-bluetooth": "^0.0.20",
"typescript": "^5.4.5"
},
"dependencies": {
2024-07-21 00:00:01 +03:00
"async-mutex": "^0.5.0",
2024-07-19 12:44:11 +03:00
"typescript-event-target": "^1.1.1"
}
}