pxt-calliope/pxtarget.json

103 lines
2.6 KiB
JSON
Raw Normal View History

2016-03-10 23:01:04 +01:00
{
"id": "microbit",
2016-04-07 00:23:58 +02:00
"name": "code micro:bit",
2016-04-13 01:00:06 +02:00
"title": "code micro:bit",
2016-03-10 23:41:57 +01:00
"corepkg": "microbit",
2016-03-10 23:01:04 +01:00
"bundleddirs": [
"libs/microbit",
2016-03-11 07:17:32 +01:00
"libs/microbit-radio"
],
"cloud": {
"workspace": false,
"packages": true
},
"blocksprj": {
"id": "blocksprj",
"config": {
"name": "{0} block",
"dependencies": {
"microbit": "*",
"microbit-radio": "*"
},
"description": "",
"files": [
"main.blocks",
2016-05-03 23:45:10 +02:00
"main.ts"
]
},
"files": {
"main.blocks": "<xml xmlns=\"http://www.w3.org/1999/xhtml\"><block type=\"device_print_message\"><value name=\"text\"><shadow type=\"text\"><field name=\"TEXT\">Hello!</field></shadow></value></block></xml>",
2016-05-03 23:45:10 +02:00
"main.ts": "\n"
}
},
"tsprj": {
"id": "tsprj",
"config": {
"name": "{0} bit",
"dependencies": {
"microbit": "*",
"microbit-radio": "*"
},
"description": "",
"files": [
2016-05-03 23:45:10 +02:00
"main.ts"
]
},
"files": {
2016-05-03 23:45:10 +02:00
"main.ts": "basic.showString('Hello!')\n"
}
},
"compile": {
"isNative": false,
2016-04-08 19:49:43 +02:00
"hasHex": true,
"deployDrives": "^MICROBIT"
},
2016-04-22 07:46:40 +02:00
"runtime": {
2016-04-27 22:13:03 +02:00
"mathBlocks": true,
2016-04-28 20:21:58 +02:00
"loopsBlocks": true,
2016-04-27 22:13:03 +02:00
"logicBlocks": true,
2016-05-02 18:46:03 +02:00
"variablesBlocks": true
2016-04-22 07:46:40 +02:00
},
"simulator": {
"autoRun": true
},
"compileService": {
2016-04-19 18:43:23 +02:00
"gittag": "v0.1.8",
"serviceId": "ws"
},
"serial": {
"manufacturerFilter": "^mbed$",
2016-04-09 10:27:08 +02:00
"nameFilter": "^mbed Serial Port",
"log": true
},
"appTheme": {
2016-04-09 01:57:37 +02:00
"logoUrl": "https://codemicrobit.com/about",
2016-04-08 22:57:37 +02:00
"logo": "./static/logo.svg",
2016-04-13 22:10:47 +02:00
"docsLogo": "./static/docslogo.svg",
2016-04-08 22:57:37 +02:00
"portraitLogo":"./static/portraitlogo.svg",
"footerLogo": "./static/footerlogo.svg",
"homeUrl": "https://codemicrobit.com/",
"embedUrl": "https://codemicrobit.com/",
"koduUrl": "https://www.kodugamelab.com/bbc-microbit/",
"visualStudioCode": true,
"docMenu": [
{
"name": "About",
"path": "/about"
},
{
"name": "Lessons",
"path": "/lessons"
},
{
"name": "Reference",
"path": "/reference"
},
{
"name": "Device",
"path": "/device"
}
]
}
2016-04-07 21:52:02 +02:00
}