mirror of
https://github.com/scottbez1/smartknob.git
synced 2025-11-04 17:19:40 +08:00
- reworked smartknobjs into separate smartknobjs-node and smartknobjs-webserial packages - configured CI to build and deploy webserial example to https://scottbez1.github.io/smartknob/
28 lines
771 B
JSON
28 lines
771 B
JSON
{
|
|
"name": "smartknobjs-node",
|
|
"version": "1.0.0",
|
|
"description": "SmartKnob Interface Library for Node.js",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier --write \"**/*.+(js|ts|json)\"",
|
|
"lint": "eslint --ext .js,.ts ."
|
|
},
|
|
"author": "",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"serialport": "^9.2.4",
|
|
"smartknobjs-core": "^1.0.0",
|
|
"smartknobjs-proto": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
|
"@typescript-eslint/parser": "^5.40.1",
|
|
"eslint": "^8.25.0",
|
|
"prettier": "^2.4.1",
|
|
"ts-node": "^10.2.1",
|
|
"typescript": "^4.8.4"
|
|
}
|
|
}
|