-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
47
48
49
50
51
52
53
54
55
{
"name": "nodecg-obs-control",
"version": "1.0.0",
"description": "",
"homepage": "",
"author": {
"name": "ericthelemur",
"email": "owenconnors1@gmail.com",
"url": ""
},
"nodecg": {
"compatibleRange": "^2.0.0",
"dashboardPanels": [
{
"name": "obs-control",
"title": "OBS Control",
"width": 3,
"file": "obscontrol.dashboard.html",
"headerColor": "#525F78"
}
]
},
"scripts": {
"start": "cd .. && npm run start",
"build": "cross-env-shell node ../wasd-common/shared/scripts/build.mjs $npm_package_name",
"watch": "npm run build -- --watch",
"clean": "npm run build -- --clean-only",
"types": "nodecg schema-types",
"nodemon": "nodemon --config ../wasd-common/shared/nodemon.json",
"dev": "concurrently --kill-others \"npm run watch -- --types\" \"npm run watch -- --browser\" \"npm run nodemon\""
},
"dependencies": {
"clone": "^2.1.2",
"get-current-line": "^7.4.0",
"obs-websocket-js": "^5.0.3",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-bootstrap-icons": "^1.10.3",
"react-dom": "^18.2.0",
"ts-node": "^10.9.1",
"use-nodecg": "github:ericthelemur/use-nodecg"
},
"devDependencies": {
"@nodecg/types": "^2.0.0",
"@types/clone": "^2.1.4",
"@types/node": "^18",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"concurrently": "*",
"nodemon": "*",
"typescript": "^5.1.3",
"cross-env": "*"
},
"license": "MIT"
}