node-web-gpio/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2019-10-13 02:13:19 +09:00
{
2019-10-18 21:16:23 +09:00
"name": "node-web-gpio",
2023-09-22 22:06:18 +00:00
"version": "1.0.29",
2019-10-13 02:13:19 +09:00
"description": "GPIO access with Node.js",
2020-09-03 18:33:42 +09:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
2019-10-13 02:13:19 +09:00
"repository": {
"type": "git",
2020-02-06 23:46:43 +09:00
"url": "https://github.com/chirimen-oh/node-web-gpio.git"
2019-10-13 02:13:19 +09:00
},
"author": "Kohei Watanabe <kou029w@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.4.0",
"husky": "^8.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"typedoc": "^0.25.0",
"typescript": "^5.0.0"
2019-10-13 02:13:19 +09:00
},
"scripts": {
2020-09-03 18:33:42 +09:00
"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"
2019-10-18 21:16:23 +09:00
},
"keywords": [
"gpio",
"hardware",
"iot",
"linux",
"pi",
"raspberry",
"raspberry pi",
"raspi",
"robot",
"robotics",
"robots",
"rpi"
]
2019-10-13 02:13:19 +09:00
}