-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 924 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"dependencies": {
"pxt-microbit": "^8.1.30"
},
"devDependencies": {
"prettier": "^3.8.3",
"@microbit-apps/ui-core": "github:microbit-apps/ui-core#v0.0.6"
},
"scripts": {
"setup": "git submodule update --init --recursive",
"format": "prettier --write \"**/*.ts\"",
"sync-local-pxt-deps": "node scripts/sync-local-pxt-deps.js",
"build:hardware:v2": "makecode build --variant mbcodal --always-built",
"size-stats": "node scripts/size-stats.js",
"loc:strings": "loc-strings",
"loc:tooltips": "node scripts/tooltipgen.mjs",
"loc:regen": "npm run loc:strings && npm run loc:tooltips",
"loc:coverage": "node scripts/locgen.mjs --coverage",
"loc:hex": "node scripts/locgen.mjs",
"loc:verify": "loc-strings && node scripts/tooltipgen.mjs && git diff --exit-code locales/en.json tooltips.ts"
}
}