-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.cli.json
More file actions
29 lines (29 loc) · 838 Bytes
/
package.cli.json
File metadata and controls
29 lines (29 loc) · 838 Bytes
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
{
"name": "esp32tool",
"version": "1.6.3",
"private": true,
"type": "module",
"description": "ESP32Tool - Standalone command-line tool (build-time config only)",
"main": "electron/cli-main.cjs",
"author": "Johann Obermeier",
"license": "MIT",
"files": [
"electron/cli-main.cjs",
"dist/**/*.js",
"dist/**/*.json",
"dist/**/*.wasm",
"!dist/web/**",
"!dist/index.js",
"!dist/index.d.ts",
"package.json"
],
"dependencies": {
"pako": "^2.1.0",
"tslib": "^2.8.1",
"usb": "^2.17.0"
},
"devDependencies": {
"electron": "^39.2.5"
},
"_comment": "This file is ONLY used during CLI builds. It is temporarily swapped with package.json by build-electron-cli.cjs, then restored. Never publish this file to npm. Keep version in sync with main package.json when releasing."
}