node-web-gpio/package.json
2022-01-11 09:07:36 +00:00

46 lines
995 B
JSON

{
"name": "node-web-gpio",
"version": "1.0.12",
"description": "GPIO access with Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/chirimen-oh/node-web-gpio.git"
},
"author": "Kohei Watanabe <kou029w@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.4.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"typescript": "^4.2.3"
},
"scripts": {
"build": "tsc",
"lint": "eslint index.ts",
"prepare": "husky install && rm -rf dist && npm run build",
"precommit": "lint-staged"
},
"keywords": [
"gpio",
"hardware",
"iot",
"linux",
"pi",
"raspberry",
"raspberry pi",
"raspi",
"robot",
"robotics",
"robots",
"rpi"
]
}