-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3.03 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
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
{
"name": "esa-commercials",
"version": "1.2.0",
"description": "NodeCG bundle used alongside nodecg-speedcontrol to run Twitch commercials for events on the ESAMarathon channel.",
"homepage": "https://github.com/esamarathon/esa-commercials#readme",
"bugs": {
"url": "https://github.com/esamarathon/esa-commercials/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esamarathon/esa-commercials.git"
},
"license": "MIT",
"author": "zoton2",
"scripts": {
"autofix": "run-s autofix:*",
"autofix:dashboard": "eslint --fix --ext .ts,.vue src/dashboard",
"autofix:extension": "eslint --fix --ext .ts src/extension",
"autofix:types": "eslint --fix --ext .d.ts src/types",
"prebuild": "npm run clean",
"build": "run-s build:*",
"build:browser": "vite build",
"build:extension": "tsc -b tsconfig.extension.json",
"clean": "run-s clean:*",
"clean:browser": "trash node_modules/.vite && trash shared/dist && trash dashboard && trash graphics",
"clean:extension": "trash extension",
"lint": "run-s lint:* -c",
"lint:dashboard": "eslint --ext .ts,.vue src/dashboard",
"lint:extension": "eslint --ext .ts src/extension",
"lint:types": "eslint --ext .d.ts src/types",
"schema-types": "nodecg schema-types",
"start": "node ../..",
"watch": "npm run prebuild && run-p watch:*",
"watch:browser": "npm run clean:browser && vite",
"watch:extension": "npm run clean:extension && tsc -b tsconfig.extension.json -w"
},
"dependencies": {
"@nodecg/types": "^2.1.12",
"module-alias": "^2.2.3",
"needle": "^3.3.1",
"obs-websocket-js": "^5.0.5",
"socket.io-client": "^4.7.5",
"speedcontrol-util": "github:speedcontrol/speedcontrol-util.git#build"
},
"devDependencies": {
"@quasar/extras": "^1.16.12",
"@quasar/vite-plugin": "^1.7.0",
"@types/needle": "^3.3.0",
"@types/node": "^18.19.39",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-vue": "^4.6.2",
"@unhead/vue": "^1.9.15",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.27.0",
"nodecg-cli": "^8.6.8",
"nodecg-vue-composable": "^1.1.0",
"npm-run-all2": "^6.2.2",
"quasar": "^2.16.6",
"trash-cli": "^5.0.0",
"ts-essentials": "^10.0.1",
"typescript": "~5.4.5",
"vite": "^4.5.3",
"vite-plugin-checker": "~0.6.4",
"vite-plugin-nodecg": "^2.0.1",
"vue": "^3.4.31",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^1.8.27"
},
"nodecg": {
"compatibleRange": "^1.9.0||^2",
"bundleDependencies": {
"nodecg-speedcontrol": "^2.4.0"
},
"dashboardPanels": [
{
"name": "control",
"title": "ESA Commercial Control",
"file": "control/main.html",
"workspace": "ESA",
"headerColor": "#c49215",
"width": 3
}
]
}
}