-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.21 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.21 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "iopython",
"displayName": "IoPython",
"description": "Professional MicroPython development toolkit for VS Code with interactive dashboard and recursive file management.",
"version": "0.0.1",
"publisher": "leandro-l-nascimento",
"author": {
"name": "Leandro L. Nascimento"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LeandroLimaPRO/iopython"
},
"bugs": {
"url": "https://github.com/LeandroLimaPRO/iopython/issues"
},
"keywords": [
"micropython",
"esp32",
"embedded",
"mpremote",
"iot",
"dashboard"
],
"icon": "icon.png",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{ "command": "iopython.selectDevice", "title": "IoPython: Select Device" },
{ "command": "iopython.connect", "title": "IoPython: Connect Device" },
{ "command": "iopython.disconnect", "title": "IoPython: Disconnect Device" },
{ "command": "iopython.sync", "title": "IoPython: Sync Project" },
{ "command": "iopython.clearProject", "title": "IoPython: Clear/Delete Project" },
{ "command": "iopython.restart", "title": "IoPython: Restart (Software)" },
{ "command": "iopython.reset", "title": "IoPython: Hard Reset Device" },
{ "command": "iopython.safeMode", "title": "IoPython: Safe Mode" },
{ "command": "iopython.managePackages", "title": "IoPython: Package Manager" },
{ "command": "iopython.serialMonitor", "title": "IoPython: Open Serial Monitor (REPL)" },
{ "command": "iopython.eraseFlash", "title": "IoPython: Erase Flash" },
{ "command": "iopython.downloadFirmware", "title": "IoPython: Download Official Firmware" },
{ "command": "iopython.writeFirmware", "title": "IoPython: Write Firmware to Device" },
{ "command": "iopython.manageManifest", "title": "IoPython: Manage MicroPython Manifest" },
{ "command": "iopython.openDashboard", "title": "IoPython: Open Dashboard" },
{ "command": "iopython.initProject", "title": "IoPython: Init Project" },
{ "command": "iopython.showOutput", "title": "IoPython: Show Output Channel" }
],
"viewsContainers": {
"activitybar": [
{
"id": "iopython-sidebar",
"title": "IoPython",
"icon": "$(circuit-board)"
}
]
},
"views": {
"iopython-sidebar": [
{
"type": "webview",
"id": "iopython.view.dashboard",
"name": "IoPython Dashboard"
},
{
"id": "iopython.view.tools",
"name": "Tools"
}
]
},
"menus": {
"view/title": []
},
"configuration": {
"title": "IoPython",
"properties": {
"iopython.defaultPort": {
"type": "string",
"default": "",
"description": "Default serial port or IP for connection"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.80.0",
"@types/node": "18.x",
"typescript": "^5.1.3"
}
}