1
0
Fork 0
mirror of https://github.com/kou029w/megabit.git synced 2025-01-30 13:48:06 +00:00
megabit/package.json
2022-08-01 17:05:40 +09:00

67 lines
1.5 KiB
JSON

{
"name": "megabit",
"version": "1.0.1",
"description": "Connect real things with Node.js",
"main": "cjs/index.js",
"type": "commonjs",
"exports": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"module": "esm/index.js",
"types": "cjs/index.d.ts",
"files": [
"cjs",
"esm"
],
"repository": {
"type": "git",
"url": "https://github.com/kou029w/megabit.git"
},
"author": "Kohei Watanabe <kou029w@gmail.com>",
"license": "MIT",
"dependencies": {
"@chirimen/ads1015": "~1",
"@chirimen/adt7410": "~1",
"@chirimen/gp2y0e03": "~1",
"@chirimen/grove-accelerometer": "~1",
"@chirimen/grove-gesture": "~1",
"@chirimen/grove-light": "~1",
"@chirimen/grove-oled-display": "~1",
"@chirimen/grove-touch": "~1",
"@chirimen/pca9685": "~1",
"@chirimen/s11059": "~1",
"@chirimen/sht30": "~1",
"@chirimen/veml6070": "~1",
"@chirimen/vl53l0x": "~1",
"node-web-gpio": "~1",
"node-web-i2c": "~1"
},
"devDependencies": {
"@types/node": "~16",
"npm-run-all": "~4",
"typescript": "~4.4.0"
},
"scripts": {
"build": "run-p build:*",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"prepare": "npm run build"
},
"keywords": [
"gpio",
"hardware",
"i2c",
"iot",
"linux",
"pi",
"raspberry pi",
"raspberry",
"raspi",
"robot",
"robotics",
"robots",
"rpi",
"smbus"
]
}