node-web-gpio/package.json

50 lines
1.3 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",
2025-01-01 13:02:44 +00:00
"version": "1.1.11",
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": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.10.3",
"husky": "9.1.7",
"lint-staged": "15.3.0",
2024-11-01 01:19:13 +00:00
"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.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
2019-10-13 02:13:19 +09:00
}