forked from zoton2/nodecg-vue-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.22 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
103
104
{
"name": "nodecg-vue-ts-template",
"version": "1.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/yagamuu/nodecg-vue-ts-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yagamuu/nodecg-vue-ts-template.git"
},
"license": "MIT",
"author": "yagamuu",
"scripts": {
"autofix": "run-s autofix:*",
"autofix:browser": "eslint --fix --ext .ts,.vue src/dashboard && eslint --fix --ext .ts,.vue src/graphics",
"autofix:extension": "eslint --fix --ext .ts src/extension && 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": "trash node_modules/.cache && trash shared/dist && trash dashboard && trash graphics && trash extension",
"lint": "run-s lint:*",
"lint:browser": "eslint --ext .ts,.vue src/dashboard && eslint --ext .ts,.vue src/graphics",
"lint:extension": "eslint --ext .ts src/extension && eslint --ext .d.ts src/types",
"schema-types": "nodecg schema-types",
"start": "node ../..",
"watch": "run-p watch:*",
"watch:browser": "vite",
"watch:extension": "tsc -b tsconfig.extension.json -w"
},
"dependencies": {
"module-alias": "^2.2.3",
"needle": "^3.2.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@nodecg/types": "^2.1.11",
"@quasar/extras": "^1.16.7",
"@quasar/vite-plugin": "^1.5.0",
"@types/needle": "^3.2.2",
"@types/node": "^18.18.3",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@unhead/vue": "^1.7.4",
"@vitejs/plugin-vue": "^4.4.0",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-vue": "^9.17.0",
"nodecg-cli": "^8.6.8",
"nodecg-vue-composable": "^1.1.0",
"npm-run-all": "^4.1.5",
"quasar": "^2.12.7",
"trash-cli": "^5.0.0",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-nodecg": "^2.0.0-rc2",
"vue": "^3.3.4",
"vue-eslint-parser": "^9.3.1",
"vue-tsc": "^1.8.15"
},
"nodecg": {
"compatibleRange": "^2.1.0",
"bundleDependencies": {
"nodecg-speedcontrol": "^2.5.0"
},
"dashboardPanels": [
{
"name": "setupInformation",
"title": "Setup Information",
"file": "setupInformation.html",
"width": 3,
"workspace": "Example Settings"
},
{
"name": "displaySound",
"title": "Display Sound",
"file": "displaySound.html",
"width": 3,
"workspace": "Example Settings"
},
{
"name": "startSoon",
"title": "Start Soon",
"file": "startSoon.html",
"width": 3,
"workspace": "Example Settings"
}
],
"graphics": [
{
"file": "example.html",
"width": 1920,
"height": 1080
}
]
}
}