makecode-browser
Version:
MakeCode (PXT) - web-cached build tool
71 lines (70 loc) • 1.56 kB
JSON
{
"name": "makecode-browser",
"version": "1.3.5",
"description": "MakeCode (PXT) - web-cached build tool",
"keywords": [
"TypeScript",
"JavaScript",
"education",
"microbit",
"arcade",
"makecode"
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/pxt-mkc"
},
"author": "",
"license": "MIT",
"homepage": "https://github.com/microsoft/pxt-mkc",
"files": [
"README.md",
"built/*",
"external/*",
"makecode"
],
"preferGlobal": false,
"engines": {
"node": ">= 14.0.0"
},
"scripts": {
"prebuild": "npm run worker",
"build": "tsc --build",
"compile": "npm run build",
"clean": "tsc --build --clean && tsc --build --clean worker && npm run clean-worker",
"clean-worker": "node worker/build.js clean",
"watch": "npm run worker && tsc --build --watch",
"worker": "tsc --build worker && node worker/build.js"
},
"main": "built/mkc.js",
"devDependencies": {
"typescript": "^4.4.3"
},
"dependencies": {
"makecode-core": "^1.7.3"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successComment": false,
"failComment": false
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json"
]
}
]
]
}
}