-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
36
37
38
39
40
41
{
"name": "simple-usb-checker",
"version": "0.5.0",
"description": "A simple tool to check what USB devices get registered once you plug it in",
"main": "./dist/main.js",
"scripts": {
"start": "sass static/styles.scss static/styles.css && tsc && electron .",
"dev-ui": "export NODE_ENV=development && electron .",
"dev-ui-win": "set NODE_ENV=development && electron .",
"dev-css": "sass --watch static/styles.scss static/styles.css",
"dev-ts": "tsc -w",
"dev": "concurrently \"npm run dev-css\" \"npm run dev-ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ManuelFeller/simple-usb-checker.git"
},
"keywords": [
"usb",
"electron"
],
"author": "Manuel Feller",
"license": "MIT",
"bugs": {
"url": "https://github.com/ManuelFeller/simple-usb-checker/issues"
},
"homepage": "https://github.com/ManuelFeller/simple-usb-checker#readme",
"dependencies": {
"@types/ws": "^8.2.2",
"usb-detection": "^4.13.0",
"ws": "^8.4.1"
},
"devDependencies": {
"concurrently": "^7.0.0",
"electron": "^16.0.7",
"electron-rebuild": "^3.2.7",
"electron-reloader": "^1.2.1",
"typescript": "^4.5.4"
}
}