-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 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
42
43
44
45
46
47
48
49
50
51
{
"name": "tightcnc",
"version": "0.2.0",
"description": "Backend-centric job-oriented server for hobby cnc controllers",
"keywords": [
"cnc",
"gcode",
"tinyg",
"g2core"
],
"scripts": {
"server": "node ./src/server/server.js",
"consoleui": "node ./src/consoleui/consoleui.js",
"cli": "node ./bin/cli.js"
},
"bin": {
"tightcnc-server": "./bin/tightcnc-server.js",
"tightcnc-consoleui": "./bin/tightcnc-consoleui.js",
"tightcnc": "./bin/cli.js"
},
"main": "src/index.js",
"dependencies": {
"blessed": "^0.1.81",
"common-schema": "^2.0.2",
"crisphooks": "^2.0.1",
"cross": "^1.0.0",
"express": "^4.17.1",
"kd-tree-javascript": "^1.0.3",
"littleconf": "^0.2.1",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"objtools": "^2.0.1",
"pasync": "^1.5.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"serialport": "^8.0.5",
"stable": "^0.1.8",
"xerror": "^1.1.3",
"yaar": "^2.1.1",
"yargs": "^15.1.0",
"zstreams": "^4.0.1"
},
"devDependencies": {
"markdown-toc": "^1.2.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/crispy1989/tightcnc.git"
}
}