-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
81 lines (81 loc) · 2.62 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
{
"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",
"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 clean 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.2"
},
"devDependencies": {
"@quasar/extras": "^1.15.11",
"@quasar/vite-plugin": "^1.3.0",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vueuse/head": "^1.1.15",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-vue": "^9.9.0",
"nodecg-cli": "^8.6.0",
"nodecg-types": "^1.9.0",
"nodecg-vue-composable": "^1.1.0",
"npm-run-all": "^4.1.5",
"quasar": "^2.11.7",
"trash-cli": "^5.0.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-checker": "^0.5.6",
"vite-plugin-nodecg": "^2.0.0-rc2",
"vue": "^3.2.47",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.2.1"
},
"nodecg": {
"compatibleRange": "^1.9.0",
"dashboardPanels": [
{
"name": "example",
"title": "Example",
"file": "example.html"
}
],
"graphics": [
{
"file": "example.html",
"width": 1920,
"height": 1080
}
]
}
}