-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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
54
{
"name": "hertzscript-velocity",
"version": "1.0.3",
"description": "Velocity is a concurrent REPL which is designed specifically for HertzScript coroutines. All code runs concurrently alongside the REPL, so you can continue typing/adding code while existing code is still running.",
"keywords": [
"javascript",
"preemption",
"preemptive",
"preemptible",
"protothreads",
"green-threads",
"coroutines",
"coroutine",
"coroutine-dispatcher",
"concurrency",
"automatic-concurrency",
"concurrent",
"concurrent-programming",
"concurrent-javascript",
"stackless-coroutines",
"multitasking",
"cooperative-multitasking",
"preemptive-multitasking",
"voluntary-preemtive-multitasking",
"repl"
],
"homepage": "https://github.com/hertzscript/Velocity#readme",
"repository": {
"type": "git",
"url": "https://github.com/hertzscript/Velocity.git"
},
"bugs": {
"url": "https://github.com/hertzscript/Velocity/issues"
},
"main": "src/Dispatcher.js",
"bin": {
"hzr": "./src/bin/REPL.js",
"hzrepl": "./src/bin/REPL.js",
"hzvelocity": "./src/bin/cREPL.js",
"hzv": "./src/bin/cREPL.js"
},
"author": "Dani Glore (https://github.com/Floofies)",
"contributors": [
"Thomas G. (https://github.com/trgwii)"
],
"license": "MIT",
"dependencies": {
"command-line-args": "^5.0.2",
"hertzscript-compiler": "",
"hertzscript-dispatcher": "",
"terminal-kit": "^1.26.8",
"@aoberoi/capture-console": "^1.1.0"
}
}