-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 2.38 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
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
103
104
105
106
107
108
109
110
111
{
"name": "microbit",
"displayName": "micro:bit",
"description": "micro:bit with Python. IntelliSense, Linting, Runtime errors. micro:bit V1 and V2. Supports the 4tronix Bit:Bot XL robot.",
"version": "1.0.10",
"publisher": "Statped",
"author": {
"name": "Øivind Rønning",
"email": "[email protected]",
"url": "https://www.statped.no/other-languages/"
},
"repository": {
"type": "Git",
"url": "https://github.com/oivron/microbit-extension-vscode"
},
"icon": "icon.png",
"engines": {
"vscode": "^1.59.0"
},
"keywords": [
"microbit",
"micropython",
"python"
],
"categories": [
"Programming Languages",
"Education"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"configuration": [
{
"title": "Python",
"properties": {
"python.thirdPartyModulesDirectory": {
"type": "string",
"default": null,
"description": "Specifies Python's third-party modules directory."
}
}
},
{
"title": "microbit",
"properties": {
"microbit.comPort": {
"type": "string",
"default": null,
"description": "Specifies the selected micro:bit COM port."
}
}
}
],
"commands": [
{
"command": "extension.flashMicrobit",
"title": "micro:bit: Flash"
},
{
"command": "extension.prepareForMicrobit",
"title": "micro:bit: Prepare"
},
{
"command": "extension.selectComPort",
"title": "micro:bit: Set COM port"
},
{
"command": "extension.readRepl",
"title": "micro:bit: Read micro:bit (REPL)"
}
],
"keybindings": [
{
"command": "extension.flashMicrobit",
"key": "ctrl+f5"
},
{
"command": "extension.readRepl",
"key": "ctrl+alt+f5"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^7.0.2",
"@types/node": "^12.20.19",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"glob": "^7.1.7",
"mocha": "^9.2.1",
"typescript": "^4.9.5",
"vscode-test": "^1.6.1"
},
"dependencies": {
"download-git-repo": "^3.0.2",
"got": "^8.3.2",
"rimraf": "^3.0.2"
}
}