This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
forked from toitware/esptool.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.72 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
62
63
64
{
"name": "esptool.ts",
"version": "0.13.6",
"description": "Updated TypeScript port of the esptool",
"homepage": "https://github.com/senseshift/esptool.ts",
"repository": {
"type": "git",
"url": "[email protected]:senseshift/esptool.ts.git"
},
"bugs": {
"url": "https://github.com/senseshift/esptool.ts/issues"
},
"author": "Toitware ApS and senseshift Contributors",
"contributors": [
"Leonid Meleshin <[email protected]> (https://leon0399.ru/)"
],
"license": "MIT",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"preinstall": "npx only-allow yarn",
"prepublish": "yarn build",
"build": "tsc -b tsconfig.json",
"watch": "tsc -b tsconfig.json -w",
"clean": "tsc -b tsconfig.json --clean",
"lint": "eslint 'src/*.{js,ts}' --max-warnings=0",
"lint:fix": "yarn lint --fix",
"lint:format": "prettier --write",
"lint:types": "tsc -p tsconfig.json --noEmit",
"build:docs": "typedoc"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"esptool",
"webserial",
"esp32",
"esp8266",
"serial"
],
"devDependencies": {
"@types/w3c-web-serial": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5",
"gh-pages": "^3.2.3",
"husky": "^8.0.2",
"prettier": "^3.0.3",
"typedoc": "^0.26.4",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@types/w3c-web-serial": "^1.0.3"
}
}