forked from BSGmarathon/speedcontrol-tweetr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.33 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
105
106
107
108
109
110
111
112
113
114
115
{
"name": "speedcontrol-tweetr",
"version": "2.0.0",
"description": "Control Twitter right from your NodeCG dashboard!",
"homepage": "https://github.com/bsgmarathon/speedcontrol-tweetr",
"author": "duncte123",
"url": "https://bsgmarathon.com",
"license": "MIT",
"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:* && trash graphics",
"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"
},
"nodecg": {
"bundleDependencies": {
"nodecg-speedcontrol": "^2.4.0"
},
"compatibleRange": "^1.9||^2",
"assetCategories": [
{
"name": "media",
"title": "Tweet Media",
"allowedTypes": [
"png",
"jpg",
"gif",
"jpeg",
"webp",
"mp4"
]
}
],
"dashboardPanels": [
{
"name": "tweetr",
"title": "Tweetr",
"file": "tweetr.html",
"workspace": "Misc",
"width": 3
},
{
"name": "editTweet",
"title": "",
"width": 4,
"file": "editTweet.html",
"dialog": true,
"dialogButtons": [
{
"name": "save",
"type": "confirm"
},
{
"name": "cancel",
"type": "dismiss"
}
]
},
{
"name": "settings",
"title": "Tweetr Settings",
"workspace": "Misc",
"file": "settings.html",
"width": 3
}
]
},
"dependencies": {
"module-alias": "^2.2.2",
"nodecg-types": "^1.9.0",
"papaparse": "^5.3.2",
"speedcontrol-util": "^0.6.1",
"twitter-api-v2": "^1.12.9"
},
"devDependencies": {
"@mdi/font": "^7.2.96",
"@types/node": "^18.14.6",
"@types/papaparse": "^5.3.7",
"@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-vue-composable": "^1.1.0",
"npm-run-all": "^4.1.5",
"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",
"vite-plugin-vuetify": "^1.0.2",
"vue": "^3.2.47",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.2.1",
"vuetify": "^3.1.11"
}
}