-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1016 Bytes
/
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
{
"name": "@luos-io/sdk-ts",
"version": "0.0.1",
"author": "Luos",
"license": "MIT",
"main": "lib/index.umd.js",
"types": "lib/index.d.ts",
"module": "lib/index.js",
"files": [
"lib/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Luos-io/utils.git"
},
"bugs": {
"url": "https://github.com/Luos-io/utils/issues"
},
"homepage": "https://github.com/Luos-io/utils#readme",
"scripts": {
"dev": "tsc -w & tsc-alias -w",
"build": "yarn clean && tsc && tsc-alias && chmod +x ./lib/index.js",
"clean": "rm -rf ./lib"
},
"devDependencies": {
"@types/node": "^16.11.18",
"@types/serialport": "^8.0.2",
"@types/w3c-web-serial": "^1.0.2",
"@types/w3c-web-usb": "^1.0.5",
"tsc-alias": "^1.5.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@luos-io/utils": "^0.0.2",
"serialport": "^9.2.8",
"web-serial-polyfill": "^1.0.12"
},
"peerDependencies": {
"serialport": "9.2.8"
}
}