forked from bsiever/pxt-blelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpxt.json
51 lines (51 loc) · 1.06 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
51
{
"name": "pxt-blelog",
"version": "0.1.19",
"description": "Data Logger Bluetooth Service. micro:bit (V2) only.",
"license": "MIT",
"dependencies": {
"core": "*",
"bluetooth": "*",
"datalogger": "*"
},
"files": [
"README.md",
"blelog.ts",
"blelog.cpp",
"shims.d.ts",
"enums.d.ts",
"BLELogService.h",
"BLELogService.cpp"
],
"testFiles": [
"test.ts"
],
"public": true,
"targetVersions": {
"target": "5.0.12",
"targetId": "microbit"
},
"supportedTargets": [
"microbit"
],
"preferredEditor": "tsprj",
"disablesVariants": [
"mbdal"
],
"authors": [
"Bill Siever <bsiever@gmail.com>"
],
"card": {
"name": "Data Logger Bluetooth Service",
"imageUrl": "file:../icon.png",
"feedbackUrl": "http://siever.info"
},
"yotta": {
"config": {
"microbit-dal": {
"bluetooth": {
}
}
}
}
}