forked from reilleya/cyclone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.53 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
52
53
54
55
56
57
58
59
60
61
{
"name": "cyclone",
"version": "0.1.0",
"description": "Control software for Marlin-driven filament winders",
"main": "dist/main.js",
"bin": {
"cyclone-cli": "dist/cli-entry.js"
},
"files": [
"dist/**/*",
"index.html",
"docs/**/*",
"examples/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"start": "npm run build && electron ./dist/main.js",
"cli": "npm run build && node ./dist/cli-entry.js",
"prepack": "npm run build",
"postinstall": "electron-builder install-app-deps",
"package:electron": "electron-builder --config electron-builder.yml --publish never",
"package:cli": "npm pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reilleya/cyclone.git"
},
"keywords": [
"cnc",
"composites",
"marlin"
],
"author": "Andrew Reilley",
"license": "MIT",
"bugs": {
"url": "https://github.com/reilleya/cyclone/issues"
},
"homepage": "https://github.com/reilleya/cyclone#readme",
"dependencies": {
"@types/canvasjs": "^1.9.7",
"canvas": "^3.2.0",
"serialport": "^10.3.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"electron": "^39.2.2",
"electron-builder": "^26.0.12",
"electron-rebuild": "^3.2.9",
"eslint": "^7.32.0",
"typescript": "^4.5.5"
},
"overrides": {
"node-abi": "^4.24.0"
}
}