node-web-gpio/package.json

50 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",
2024-11-19 01:03:31 +00:00
"version": "1.1.5",
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": {
2024-11-01 01:19:13 +00:00
"@biomejs/biome": "1.9.3",
"@types/node": "22.7.4",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"typedoc": "0.26.7",
"typescript": "5.6.2"
2019-10-13 02:13:19 +09:00
},
"scripts": {
2020-09-03 18:33:42 +09:00
"build": "tsc",
"lint": "biome lint 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"
2024-10-04 23:05:16 +09:00
],
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
2019-10-13 02:13:19 +09:00
}