mirror of
https://github.com/chirimen-oh/node-web-i2c.git
synced 2025-01-18 16:08:06 +00:00
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "node-web-i2c",
|
|
"version": "1.1.33",
|
|
"description": "I2C access with Node.js",
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.*"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/chirimen-oh/node-web-i2c.git"
|
|
},
|
|
"author": "Kohei Watanabe <kou029w@gmail.com>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@types/i2c-bus": "^5.1.0",
|
|
"@types/node": "^18.0.0",
|
|
"i2c-bus": "^5.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint": "^8.4.1",
|
|
"husky": "^8.0.0",
|
|
"lint-staged": "^15.0.0",
|
|
"prettier": "^3.0.0",
|
|
"typedoc": "^0.25.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": [
|
|
"hardware",
|
|
"i2c",
|
|
"iot",
|
|
"linux",
|
|
"pi",
|
|
"raspberry",
|
|
"raspberry pi",
|
|
"raspi",
|
|
"robot",
|
|
"robotics",
|
|
"robots",
|
|
"rpi",
|
|
"smbus"
|
|
]
|
|
}
|