-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@tibbo/tide-proxy",
"version": "1.1.34",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && npm run esbuild",
"esbuild": "node esbuild.config.js",
"watch": "npm run build --watch",
"prepare": "npm run build"
},
"author": {
"name": "Jimmy Hu",
"email": "jimmy.hu@tibbo.com"
},
"keywords": [
"typescript"
],
"files": [
"lib"
],
"exports": {
"./MicropythonSerial": "./lib/MicropythonSerial.js",
"./BrowserSerialPort": "./lib/BrowserSerialPort.js",
"./ESP32Serial": "./lib/ESP32Serial/browser.js",
"./ISerialPort": "./lib/ISerialPort.js"
},
"dependencies": {
"await-notify": "1.0.1",
"axios": "^0.21.4",
"commander": "^11.0.0",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"esptool-js": "^0.5.2",
"express": "^4.18.2",
"pako": "^2.1.0",
"serialport": "^12.0.0",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.0",
"winston": "^3.3.3",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/dom-serial": "^1.0.6",
"@types/node": "^13.13.2",
"@types/pako": "^2.0.3",
"@types/socket.io": "^3.0.0",
"@types/socket.io-client": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"esbuild": "^0.24.0",
"eslint": "^7.2.0",
"typescript": "4.2.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}