pxt-calliope/pxtarget.json

104 lines
2.7 KiB
JSON
Raw Normal View History

2016-03-10 14:01:04 -08:00
{
"id": "microbit",
2016-04-06 15:23:58 -07:00
"name": "code micro:bit",
2016-04-12 16:00:06 -07:00
"title": "code micro:bit",
2016-03-10 14:41:57 -08:00
"corepkg": "microbit",
2016-03-10 14:01:04 -08:00
"bundleddirs": [
"libs/microbit",
2016-03-10 22:17:32 -08: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-04-06 15:12:55 -07:00
"main.ts",
"README.md"
]
},
"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-04-06 16:09:20 -07:00
"main.ts": "\n",
"README.md": "Describe your project here!"
}
},
"tsprj": {
"id": "tsprj",
"config": {
"name": "{0} bit",
"dependencies": {
"microbit": "*",
"microbit-radio": "*"
},
"description": "",
"files": [
"main.ts",
"README.md"
]
},
"files": {
"main.ts": "basic.showString('Hello!')\n",
"README.md": "Describe your project here!"
}
},
"compile": {
"isNative": false,
2016-04-08 10:49:43 -07:00
"hasHex": true,
"deployDrives": "^MICROBIT"
},
2016-04-21 22:46:40 -07:00
"runtime": {
"mathBlocks": true
},
"simulator": {
"autoRun": true
},
"compileService": {
2016-04-19 09:43:23 -07:00
"gittag": "v0.1.8",
"serviceId": "ws"
},
"serial": {
"manufacturerFilter": "^mbed$",
2016-04-09 01:27:08 -07:00
"nameFilter": "^mbed Serial Port",
"log": true
},
"appTheme": {
2016-04-08 16:57:37 -07:00
"logoUrl": "https://codemicrobit.com/about",
2016-04-08 13:57:37 -07:00
"logo": "./static/logo.svg",
2016-04-13 13:10:47 -07:00
"docsLogo": "./static/docslogo.svg",
2016-04-08 13:57:37 -07: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 12:52:02 -07:00
}