-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpxt.json
42 lines (42 loc) · 931 Bytes
/
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
{
"name": "Billy",
"version": "0.0.25",
"description": "A text to speech extension for Micro:bit using Makecode (Micro:bit V2 only)",
"license": "MIT",
"dependencies": {
"core": "*"
},
"files": [
"README.md",
"main.ts",
"shim.cpp",
"billy.h",
"billy.cpp",
"shims.d.ts",
"enums.d.ts",
"sam/debug.h",
"sam/debug.cpp",
"sam/sam.h",
"sam/sam.cpp",
"sam/render.h",
"sam/render.cpp",
"sam/reciter.h",
"sam/reciter.cpp",
"sam/SamTabs.h",
"sam/ReciterTabs.h",
"sam/RenderTabs.h"
],
"testFiles": ["test.ts"],
"public": true,
"targetVersions": {
"target": "5.1.2",
"targetId": "microbit"
},
"supportedTargets": [
"microbit"
],
"preferredEditor": "tsprj",
"disablesVariants": [
"mbdal"
]
}