-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 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
{
"name": "@luos-io/sdk-web",
"version": "1.0.4",
"author": "Luos",
"description": "",
"license": "MIT",
"type": "module",
"types": "./lib/index.d.ts",
"exports": "./lib/index.js",
"module": "./lib/index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/luos-io/sdk-web.git"
},
"bugs": {
"url": "https://github.com/luos-io/sdk-web/issues"
},
"homepage": "https://github.com/luos-io/sdk-web#readme",
"scripts": {
"build": "rimraf ./lib && tsc && tsc-alias",
"build:watch": "rimraf ./lib & tsc -w & tsc-alias -w"
},
"dependencies": {
"@luos-io/utils": "^0.0.2",
"semver": "^7.3.5",
"serialport": "^9.2.8",
"web-serial-polyfill": "^1.0.13"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.2",
"@types/semver": "^7.3.9",
"@types/serialport": "^8.0.2",
"@types/w3c-web-serial": "^1.0.2",
"rimraf": "^3.0.2",
"tsc-alias": "^1.5.0",
"typescript": "^4.5.4"
}
}