-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 2.59 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
{
"name": "kuest-streaming",
"version": "0.0.0",
"description": "",
"license": "MIT",
"scripts": {
"build": "vite build",
"dev": "run-p dev:*",
"dev:nodecg": "onchange extension schema configschema.json -ik -- node --enable-source-maps ../..",
"dev:schema-types": "onchange schemas configschema.json -i -- npm run schema-types",
"dev:tsc": "tsc -b src/browser src/extension -w --preserveWatchOutput",
"dev:vite": "vite",
"external": "mkdirp external && nget -i nget.txt -P external -nQ && ncp src/browser/common/image/ external/",
"format": "run-s format:*",
"format:prettier": "npm run test:prettier -- --write",
"format:sort-package-json": "sort-package-json",
"prepare": "husky install",
"schema-types": "del-cli src/nodecg/generated && nodecg schema-types -o src/nodecg/generated",
"start": "(cd ../.. && node index.js)",
"test": "run-s schema-types test:*",
"test:lint": "eslint --ext .ts,.tsx .",
"test:prettier": "prettier \"**/*.{ts,tsx,json,html,yml,css,scss,md}\" --check",
"test:types": "tsc -b src/browser src/extension"
},
"lint-staged": {
"*.{ts,tsx,json,html,yml,css,scss,md}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"@warren-bank/node-request-cli": "^4.0.19",
"discord-streamkit-rpc": "github:secchanu/discord-streamkit-rpc",
"mkdirp": "^3.0.1",
"ncp": "^2.0.0"
},
"devDependencies": {
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/parser": "^6.5.0",
"@vitejs/plugin-react": "^4.0.4",
"del-cli": "^5.0.1",
"eslint": "^8.48.0",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^10.3.3",
"husky": "^8.0.3",
"klona": "^2.0.6",
"lint-staged": "^14.0.1",
"modern-normalize": "^2.0.0",
"nodecg-cli": "^8.6.8",
"npm-run-all2": "^6.0.6",
"onchange": "^7.1.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.28.1",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-node-externals": "^6.1.1",
"sort-package-json": "^2.5.1",
"ts-nodecg": "^0.3.1",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"nodecg": {
"compatibleRange": "^2.0.0",
"dashboardPanels": [
{
"name": "map",
"title": "マップ",
"file": "map.html",
"width": 2
},
{
"name": "waiting",
"title": "待機画面",
"file": "waiting.html",
"width": 3
}
],
"graphics": [
{
"file": "waiting.html",
"width": 1920,
"height": 1080
},
{
"file": "talk.html",
"width": 1920,
"height": 1080
}
],
"mount": [
{
"directory": "external",
"endpoint": "external"
}
]
}
}