-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpxt.json
50 lines (50 loc) · 1.27 KB
/
pxt.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
{
"name": "machine-learning-runner",
"version": "0.4.8",
"description": "Extension to run ML4F models in micro:bit MakeCode",
"dependencies": {
"core": "*"
},
"files": [
"README.md",
"shims.d.ts",
"enums.d.ts",
"mlrunner/ml4f.h",
"mlrunner/ml4f.c",
"mlrunner/mlrunner.h",
"mlrunner/mlrunner.c",
"mlrunner/mldataprocessor.h",
"mlrunner/mldataprocessor.c",
"mlrunner/filterdataprocessor.c"
],
"testFiles": [
"main.ts",
"main.blocks",
"autogenerated.ts",
"testextension.ts",
"testextension.cpp",
"mlrunner/example_model1.h",
"mlrunner/example_dataprocessor.c",
"modeltest/modeltest.h",
"modeltest/modeltest.cpp",
"modeltest/testdata.h"
],
"targetVersions": {
"targetId": "microbit",
"branch": "v6.1.10",
"tag": "v6.1.10",
"commits": "https://github.com/microsoft/pxt-microbit/commits/c2582013942681630496b1ab0659efb365181bc8",
"target": "6.1.10",
"pxt": "9.3.15"
},
"supportedTargets": [
"microbit"
],
"preferredEditor": "tsprj",
"disablesVariants": [
"mbdal"
],
"yotta": {
"config": {}
}
}