-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.68 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.68 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
33
34
35
36
37
38
39
40
41
{
"name": "@em-foundation/emscript-sdk",
"version": "26.1.2",
"description": "Em-Foundation's EM•Script software development kit. See https://openem.org for details",
"license": "MIT",
"author": {
"name": "Bob Frankel",
"email": "hello@openem.org",
"url": "https://openem.org"
},
"contributors": [
{
"name": "Geof Cohler",
"email": "geof@openem.org",
"url": "https://openem.org"
}
],
"keywords": [
"openem",
"em-foundation",
"emscript",
"em",
"emfoundation",
"embedded"
],
"homepage": "https://www.openem.org",
"repository": {
"type": "git",
"url": "git+https://github.com/em-foundation/emscript-sdk.git"
},
"dependencies": {
"emscript-cli": "https://github.com/em-foundation/npm-packages/releases/download/resources/emscript-cli-26.1.2.202502201834.tgz",
"segger-arm": "https://github.com/em-foundation/npm-packages/releases/download/resources/segger-arm-8.22.1.tgz",
"ti-uniflash": "https://github.com/em-foundation/npm-packages/releases/download/resources/ti-uniflash-8.7.0.tgz"
},
"scripts": {
"postinstall": "if pwd | grep -q '/node_modules/@em-foundation/emscript-sdk$'; then cp -r ./* ../../../ && cd ../../../; fi && ./node_modules/emscript-cli/bin/emscript --root=. config",
"verify-build": "cd workspace; ../node_modules/emscript-cli/bin/emscript build --unit em.core/em.examples.basic/Ex02_BlinkerP.em.ts",
"verify-load": "cd workspace; ../node_modules/emscript-cli/bin/emscript build --unit em.core/em.examples.basic/Ex02_BlinkerP.em.ts --load"
}
}