-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "esptool-js",
"version": "0.4.7",
"module": "lib/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "Apache-2.0",
"files": [
"lib",
"bundle.js"
],
"scripts": {
"build": "npm run clean && tsc && rollup --config",
"clean": "rimraf lib bundle.js .parcel-cache esptool-js-*.tgz",
"format": "prettier --write \"src/**/*.ts\"",
"genDocs": "rimraf docs && typedoc",
"lint": "eslint . --ext .ts",
"lintAndFix": "eslint . --ext .ts --fix",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\"",
"prepublishOnly": "npm run test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/espressif/esptool-js.git"
},
"bugs": {
"url": "https://github.com/espressif/esptool-js/issues"
},
"dependencies": {
"atob-lite": "^2.0.0",
"pako": "^2.1.0",
"tslib": "^2.4.1"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@types/atob-lite": "^2.0.2",
"@types/pako": "^2.0.0",
"@types/w3c-web-serial": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"babel-loader": "^9.1.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^46.4.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^3.3.0",
"typedoc": "^0.25.2",
"typescript": "^4.8.4"
}
}