47 lines
875 B
JSON
47 lines
875 B
JSON
{
|
|
"name": "node-web-serial",
|
|
"version": "0.0.1",
|
|
"description": "Serial communication with Node.js",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"files": [
|
|
"index.*"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/chirimen-oh/node-web-serial.git"
|
|
},
|
|
"author": "Kohei Watanabe <kou029w@gmail.com>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@types/node": "^16",
|
|
"@types/serialport": "^8.0.2",
|
|
"serialport": "^9.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"typedoc": "^0.21.4",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"docs": "",
|
|
"prepare": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"com port",
|
|
"hardware",
|
|
"iot",
|
|
"modem",
|
|
"robot",
|
|
"robotics",
|
|
"robots",
|
|
"serial port",
|
|
"serial",
|
|
"serialport",
|
|
"tty",
|
|
"uart"
|
|
],
|
|
"engines": {
|
|
"node": ">=16.5.0"
|
|
}
|
|
}
|