forked from GoogleChromeLabs/serial-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "serial-terminal",
"version": "0.0.1",
"description": "A demonstration of the Serial API providing an interactive serial console.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/GoogleChromeLabs/serial-terminal.git"
},
"dependencies": {
"xterm": "^4.8.1",
"xterm-addon-fit": "^0.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"gh-pages": "^2.2.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^1.2.1",
"ts-loader": "^6.2.2",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"workbox-webpack-plugin": "^5.1.3"
},
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint src/*.ts",
"publish": "node publish.js"
}
}