node-web-gpio/package.json
2023-04-09 01:44:43 +00:00

50 lines
1.2 KiB
JSON

{
"name": "node-web-gpio",
"version": "1.0.22",
"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": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.4.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.5.1",
"typedoc": "^0.24.0",
"typescript": "^5.0.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint index.ts",
"prepare": "husky install && rm -rf dist && npm run build",
"precommit": "lint-staged",
"docs": "npm run remove:docs && npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./ README.md",
"typedoc": "typedoc",
"remove:docs": "rm -rf docs"
},
"keywords": [
"gpio",
"hardware",
"iot",
"linux",
"pi",
"raspberry",
"raspberry pi",
"raspi",
"robot",
"robotics",
"robots",
"rpi"
]
}