forked from SlimeVR/slimevr-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
42
43
44
45
46
{
"name": "@slimevr/firmware-protocol-debugger",
"version": "0.2.0",
"main": "dist/index.js",
"license": "(MIT OR Apache-2.0)",
"homepage": ".",
"author": {
"name": "TheDevMinerTV",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/SlimeVR/slimevr-node.git/tree/master/apps/firmware-protocol-debugger"
},
"bugs": {
"url": "https://github.com/SlimeVR/slimevr-node/issues"
},
"bin": {
"slimevr-firmware-protocol-debugger": "dist/index.js"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@slimevr/common": "*",
"@slimevr/firmware-protocol": "*",
"@slimevr/firmware-protocol-debugger-utils": "*",
"@slimevr/firmware-protocol-debugger-shared": "*",
"strict-event-emitter-types": "2.0.0"
},
"devDependencies": {
"@types/node": "17.0.45",
"concurrently": "7.5.0",
"cross-env": "7.0.3",
"nodemon": "^2.0.20",
"typescript": "4.8.4",
"wait-for-it": "1.0.0"
},
"scripts": {
"dev": "concurrently \"tsc -w\" \"nodemon .\"",
"build": "tsc"
},
"engines": {
"node": ">=16.0.0"
}
}