-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.25 KB
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
{
"name": "dotastreamkit",
"version": "1.5.11",
"private": true,
"description": "Local Dota 2 streamer toolkit with OBS anti-stream-sniping overlays and Twitch Channel Points Predictions automation.",
"keywords": [
"dota2",
"twitch",
"obs",
"obs-overlay",
"streamer-tools",
"anti-stream-sniping",
"channel-points",
"twitch-predictions",
"game-state-integration"
],
"homepage": "https://github.com/Seno47/DotaStreamKit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Seno47/DotaStreamKit.git"
},
"bugs": {
"url": "https://github.com/Seno47/DotaStreamKit/issues"
},
"type": "module",
"scripts": {
"start": "node src/server.js",
"stop": "powershell -ExecutionPolicy Bypass -File scripts/stop.ps1",
"check": "node --check src/server.js",
"test:draft-phase": "node scripts/test-draft-phase.js",
"test:safe-merge": "node scripts/test-safe-merge.js",
"test:prediction-safety": "node scripts/test-prediction-safety.js",
"test:prediction-result": "node scripts/test-prediction-result.js",
"test:game-intel": "node scripts/test-game-intel.js",
"test:streamer-stats": "node scripts/test-streamer-stats.js",
"test:menu-mmr-ocr": "node scripts/test-menu-mmr-ocr.js",
"test:screen-capture": "node scripts/test-screen-capture.js",
"test:server-api": "node scripts/test-server-api.js",
"test:server-security": "node scripts/test-server-security.js",
"optimize:assets": "node scripts/optimize-assets.js",
"extract:dota-assets": "powershell -ExecutionPolicy Bypass -File scripts/extract-dota-assets.ps1",
"install:gsi": "powershell -ExecutionPolicy Bypass -File scripts/install-gsi.ps1",
"build:win": "powershell -ExecutionPolicy Bypass -File scripts/build-windows-release.ps1",
"build:win:installer": "powershell -ExecutionPolicy Bypass -File scripts/build-windows-installer.ps1",
"build:linux": "powershell -ExecutionPolicy Bypass -File scripts/build-linux-release.ps1",
"build:mac": "powershell -ExecutionPolicy Bypass -File scripts/build-macos-release.ps1"
},
"engines": {
"node": ">=20.9.0"
},
"license": "MIT",
"dependencies": {
"node-screenshots": "^0.2.8",
"sharp": "^0.35.3",
"tesseract.js": "^7.0.0"
}
}