2019-10-13 02:13:19 +09:00
|
|
|
{
|
2019-10-18 21:16:23 +09:00
|
|
|
"name": "node-web-gpio",
|
2023-10-14 21:03:07 +00:00
|
|
|
"version": "1.0.30",
|
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": {
|
2023-02-17 07:07:02 +00:00
|
|
|
"@types/node": "^18.0.0",
|
2023-07-10 18:28:01 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
|
|
"@typescript-eslint/parser": "^6.0.0",
|
2021-12-08 10:01:04 +09:00
|
|
|
"eslint": "^8.4.0",
|
2022-05-08 23:48:47 +00:00
|
|
|
"husky": "^8.0.0",
|
2023-10-14 19:01:04 +00:00
|
|
|
"lint-staged": "^15.0.0",
|
2023-07-05 13:32:01 +00:00
|
|
|
"prettier": "^3.0.0",
|
2023-08-25 23:02:20 +00:00
|
|
|
"typedoc": "^0.25.0",
|
2023-03-16 17:06:35 +00:00
|
|
|
"typescript": "^5.0.0"
|
2019-10-13 02:13:19 +09:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-09-03 18:33:42 +09:00
|
|
|
"build": "tsc",
|
2021-03-28 17:31:23 +09:00
|
|
|
"lint": "eslint index.ts",
|
2021-12-08 10:01:04 +09:00
|
|
|
"prepare": "husky install && rm -rf dist && npm run build",
|
2022-01-18 22:24:49 +09:00
|
|
|
"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
|
|
|
}
|