forked from microsoft/pxt-sample
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.79 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "pxt-buildbee",
"version": "2.0.52",
"description": "Create 3D printing projects using MakeCode",
"keywords": [
"JavaScript",
"education",
"BuildBee",
"MakeCode",
"pxt",
"3D Printing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Buildbee/makecode.git"
},
"author": "BuildBee",
"license": "MIT",
"homepage": "https://buildbee.com",
"files": [
"README.md",
"pxtarget.json",
"targetconfig.json",
"built/*.js",
"built/*.json",
"built/*.d.ts",
"sim/public",
"docs/**"
],
"scripts": {
"patchBuild": "node pxt-patches/applyPatches.js",
"start": "pxt clean && yarn patchBuild && pxt staticpkg && yarn build:after-build && pxt serve -pkg",
"checkdocs": "pxt checkdocs",
"build:static": "yarn patchBuild && pxt staticpkg --bump && yarn build:after-build",
"build:static-dev": "yarn patchBuild && pxt staticpkg && yarn build:after-build",
"build:after-build": "node pxt-patches/afterBuild.js",
"start:static": "yarn build:static && pxt serve --static",
"copy:gh-pages": "echo 'copying built files to gh-pages branches for the docs and makecode repos...' && pushd ../../gh-pages/makecode && git checkout gh-pages && popd && cp -R built/gh-pages/makecode ../../gh-pages/makecode && pushd ../../docs/docs && git checkout gh-pages && popd && cp -R docs/ ../../docs/docs && echo 'dont forget to check in the changes in ../../gh-pages/makecode and ../../docs/docs'"
},
"devDependencies": {
"@types/bluebird": "2.0.33",
"@types/jquery": "3.3.29",
"@types/marked": "0.3.0",
"@types/node": "8.0.53",
"semantic-ui-less": "2.2.14",
"typescript": "3.7.5"
},
"dependencies": {
"@jscad/io": "^0.5.0",
"pxt-core": "6.12.4",
"replace-in-file": "^6.1.0"
}
}