forked from zoton2/nodecg-vue-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.75 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "nodecg-vue-ts-template",
"version": "2.0.0",
"description": "Template for NodeCG bundles that use Vue.js and TypeScript.",
"homepage": "https://github.com/zoton2/nodecg-vue-ts-template#readme",
"bugs": {
"url": "https://github.com/zoton2/nodecg-vue-ts-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zoton2/nodecg-vue-ts-template.git"
},
"license": "MIT",
"author": "zoton2",
"type": "module",
"scripts": {
"autofix": "eslint --fix",
"prebuild": "trash ./extension && trash ./node_modules/.vite && trash ./shared/dist && trash ./dashboard && trash ./graphics",
"build": "vite build && tsc -b tsconfig.extension.json",
"lint": "eslint",
"schema-types": "nodecg schema-types",
"start": "node ../..",
"watch": "conc -n B,E -c red,blue -k vite \"tsc -b -w --preserveWatchOutput tsconfig.extension.json\""
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@nodecg/types": "^2.3.2",
"@quasar/extras": "^1.16.15",
"@quasar/vite-plugin": "^1.8.1",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.10.2",
"@unhead/vue": "^1.11.14",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-typescript": "^14.2.0",
"@vue/tsconfig": "^0.7.0",
"concurrently": "^9.1.1",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"nodecg-vue-composable": "^1.1.0",
"quasar": "^2.17.5",
"sass-embedded": "^1.83.0",
"trash-cli": "^6.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.6",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-nodecg": "^2.1.0",
"vue": "^3.5.13",
"vue-tsc": "~2.1.10"
},
"overrides": {
"vite-plugin-nodecg": {
"vite": "$vite"
}
},
"nodecg": {
"compatibleRange": "^2.5.0",
"bundleDependencies": {
"nodecg-speedcontrol": "^2.5.0"
},
"dashboardPanels": [
{
"name": "example",
"title": "Example",
"file": "example/main.html",
"width": 3
},
{
"name": "setupInformation",
"title": "Setup Information",
"file": "setupInformation/main.html",
"width": 3,
"workspace": "Example Settings"
},
{
"name": "displaySound",
"title": "Display Sound",
"file": "displaySound/main.html",
"width": 3,
"workspace": "Example Settings"
},
{
"name": "startSoon",
"title": "Start Soon",
"file": "startSoon/main.html",
"width": 3,
"workspace": "Example Settings"
}
],
"graphics": [
{
"file": "example/main.html",
"width": 1920,
"height": 1080
}
]
},
"dependencies": {
"nodecg": "^2.5.3",
"uuid": "^11.0.5"
}
}