-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "raspi-serial",
"version": "6.0.0",
"description": "Provides access to the serial port on the Raspberry Pi as part of the Raspi.js library suite",
"main": "dist/index.js",
"types": "./declarations/index.d.ts",
"dependencies": {
"j5-io-types": "^2.4.0",
"raspi-peripheral": "^3.0.3",
"serialport": "^8.0.6"
},
"devDependencies": {
"@types/node": "^10.12.12",
"@types/raspi-peripheral": "^2.0.0",
"@types/serialport": "^7.0.4",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"engines": {
"node": ">= 10.13.0"
},
"cpu": [
"arm",
"arm64"
],
"scripts": {
"prebuild": "tslint 'src/**/*.ts'",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/nebrius/raspi-serial.git"
},
"keywords": [
"nodebots",
"robotics",
"raspberry pi"
],
"author": "Bryan Hughes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nebrius/raspi-serial/issues"
},
"homepage": "https://github.com/nebrius/raspi-serial"
}