forked from google/blockly-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 957 Bytes
/
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
{
"name": "blockly-interpreter-demo",
"version": "0.0.0",
"private": true,
"blocklyDemoConfig": {
"title": "JS Interpreter",
"files": [
"index.html",
"async-execution.html",
"backwards.html",
"step-execution.html",
"acorn_interpreter.js",
"acorn.js",
"interpreter.js",
"serialize.js",
"diff_match_patch.js",
"toolbox.js",
"wait_block.js",
"./node_modules/blockly/*_compressed.js",
"./node_modules/blockly/*_compressed.js.map",
"./node_modules/blockly/msg/en.js",
"./node_modules/blockly/media/*"
],
"pages": [
{
"label": "Step Execution",
"link": "step-execution.html"
},
{
"label": "Async Execution",
"link": "async-execution.html"
},
{
"label": "Backwards Execution",
"link": "backwards.html"
}
]
},
"dependencies": {
"blockly": "^10.0.0"
}
}