-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.93 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.93 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "FlashForgeUI",
"productName": "FlashForgeUI",
"version": "1.0.3",
"description": "Monitoring and Control software for FlashForge printers",
"main": "lib/index.js",
"scripts": {
"start": "npm run build && electron .",
"dev": "npm run build:webui && concurrently \"npm run build:main:watch\" \"npm run build:renderer:watch\" \"npm run electron:wait\"",
"dev:clean": "npm run clean && npm run dev",
"electron:wait": "node scripts/wait-for-build.js",
"build": "npm run build:main && npm run build:renderer && npm run build:webui",
"build:clean": "npm run clean && npm run build",
"build:main": "tsc",
"build:main:watch": "tsc --watch",
"build:renderer": "webpack --config webpack.config.js",
"build:renderer:watch": "webpack --config webpack.config.js --watch",
"build:webui": "tsc --project src/webui/static/tsconfig.json && npm run build:webui:copy",
"build:webui:copy": "node scripts/copy-webui-assets.js",
"build:linux": "npm run build:clean && electron-builder --linux --publish never --config electron-builder-config.js",
"build:win": "npm run build:clean && electron-builder --win --publish never --config electron-builder-config.js && rimraf dist/win-unpacked",
"build:mac": "npm run build:clean && electron-builder --mac --publish never --config electron-builder-config.js",
"build:ci:linux": "npm run build && electron-builder --linux --publish never --config electron-builder-config.js",
"build:ci:win": "npm run build && electron-builder --win --publish never --config electron-builder-config.js && rimraf dist/win-unpacked",
"build:ci:mac": "npm run build && electron-builder --mac --publish never --config electron-builder-config.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"linecount": "powershell -ExecutionPolicy Bypass -File scripts/count_lines.ps1",
"docs:check": "powershell -ExecutionPolicy Bypass -File scripts/check_fileoverview.ps1",
"docs:combine": "powershell -ExecutionPolicy Bypass -File scripts/extract_fileoverview.ps1",
"docs:clean": "rimraf \"fileoverview-collection.json\"",
"clean": "rimraf lib dist \"NVIDIA Corporation\"",
"type-check": "npx tsc --noEmit",
"full-check": "npm run type-check && npm run lint",
"knip": "knip",
"knip:fix": "knip --fix",
"knip:production": "knip --production",
"knip:exports": "knip --include exports",
"knip:dependencies": "knip --include dependencies,devDependencies",
"knip:files": "knip --include files"
},
"keywords": [],
"author": {
"name": "GhostTypes",
"email": "106415648+GhostTypes@users.noreply.github.com"
},
"license": "MIT",
"overrides": {
"js-yaml": "4.1.1",
"tar": "7.5.12",
"fast-xml-parser": "5.5.8",
"flatted": "3.4.2"
},
"dependencies": {
"@cycjimmy/jsmpeg-player": "^6.1.2",
"@ghosttypes/ff-api": "*",
"@parallel-7/slicer-meta": "^1.1.0-20251112234641",
"electron-log": "^5.2.4",
"electron-updater": "^6.6.2",
"express": "^5.1.0",
"gridstack": "^12.3.3",
"lucide": "^0.552.0",
"node-rtsp-stream": "^0.0.9",
"ws": "^8.18.3",
"zod": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.1",
"@eslint/js": "^9.30.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.9",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"babel-jest": "^29.7.0",
"concurrently": "^9.1.2",
"css-loader": "^7.1.2",
"electron": "^35.7.5",
"electron-builder": "^26.5.0",
"eslint": "^9.16.0",
"html-webpack-plugin": "^5.6.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"knip": "^5.64.1",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}