forked from microsoft/devicescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.3 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.3 KB
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
{
"version": "0.0.0",
"private": true,
"scripts": {
"setup": "git submodule update --init --recursive && git pull && yarn install --frozen-lockfile && npm install -g -u jacdac-cli",
"build": "(cd jacdac-ts && yarn build) && (cd vscode && yarn buildicons) && node ./build.js",
"build-fast": "(cd jacdac-ts && node ./build.js --fast) && node ./build.js --fast",
"watch": "node ./build.js --watch",
"docs": "cd website && yarn start",
"dev": "yarn watch & yarn docs",
"devtools": "yarn build && node ./cli/devicescript devtools",
"test": "node ./cli/devicescript ctool --test",
"presemantic": "node ./scripts/presemantic.mjs",
"boards": "node ./cli/devicescript ctool --fetch-boards compiler/src/boards.json",
"localboards2": "node ./cli/devicescript ctool --local-boards ../.. --fetch-boards compiler/src/boards.json",
"localboards1": "node ./cli/devicescript ctool --local-boards .. --fetch-boards compiler/src/boards.json"
},
"workspaces": [
"compiler",
"cli",
"runtime/devicescript-vm",
"runtime/jacdac-c/jacdac",
"jacdac-ts",
"dap",
"vscode",
"vscode/sampleprj",
"website"
],
"devDependencies": {
"esbuild": "^0.17.8"
}
}