-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1 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
{
"name": "carvera-control",
"version": "1.0.8",
"description": "Browser app and network proxy for Makera's Carvera Desktop CNC mill",
"author": "Stewart Allen <[email protected]>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/gridspace/carvera-control.git"
},
"scripts": {
"genssl": "mkdir -p ssl; openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout ssl/key.pem -out ssl/cert.pem",
"bundle": "browserify lib/worker.js -o web/work-bundle.js"
},
"keywords": [
"makera",
"carvera",
"proxy"
],
"dependencies": {
"compression": "^1.7.4",
"connect": "^3.7.0",
"crc": "~3.8.0",
"marked": "^4.2.3",
"md5": "^2.3.0",
"serve-static": "^1.14.1",
"three": "^0.147.0",
"web-serial-polyfill": "^1.0.14",
"ws": "^7.5.5"
},
"devDependencies": {
"browserify": "^17.0.0"
}
}