-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 1.02 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": "@toit/esptool.js",
"version": "0.9.1",
"description": "TypeScript port of the esptool",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "[email protected]:toitware/esptool.js.git",
"author": "Toitware ApS",
"license": "MIT",
"scripts": {
"build": "tsc -b tsconfig.json",
"watch": "tsc -b tsconfig.json -w",
"clean": "tsc -b tsconfig.json --clean",
"lint": "eslint 'src/*.{js,ts,tsx}' --max-warnings=0",
"doc": "typedoc",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"files": [
"build",
"README.md"
],
"keywords": [
"esptool",
"webserial",
"esp32",
"esp8266",
"serial",
"toit",
"toitware"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"gh-pages": "^3.2.3",
"prettier": "^2.3.1",
"typedoc": "^0.21.0",
"typescript": "^4.3.4"
}
}