-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 945 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 945 Bytes
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
{
"name": "microscope-viewer",
"version": "1.0.0",
"description": "Electron viewer for non-UVC Geek Szitman supercamera USB microscopes.",
"main": "src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/JacobFV/microscope-viewer.git"
},
"scripts": {
"start": "electron .",
"bootstrap": "npm install && python3 -m venv .venv && .venv/bin/pip install --upgrade pip && .venv/bin/pip install -r requirements.txt",
"check:camera": ".venv/bin/python bridge/supercamera_bridge.py list",
"setup:udev": "sudo ./scripts/install-udev-rule.sh",
"test": "node --check src/main.js && node --check src/preload.js && .venv/bin/python -m py_compile bridge/supercamera_bridge.py"
},
"keywords": [
"electron",
"microscope",
"supercamera",
"usb",
"non-uvc"
],
"author": "JacobFV",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"electron": "^42.3.0"
}
}