-
-
Notifications
You must be signed in to change notification settings - Fork 196
/
package.json
137 lines (137 loc) · 4.1 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "cs-demo-manager",
"version": "3.9.1",
"description": "Companion application for your Counter-Strike demos.",
"author": {
"name": "AkiVer",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://cs-demo-manager.com",
"repository": "https://github.com/akiver/cs-demo-manager",
"bugs": {
"url": "https://github.com/akiver/cs-demo-manager/issues"
},
"tutorial": {
"url": "https://cs-demo-manager.com/docs"
},
"download": {
"url": "https://cs-demo-manager.com/download"
},
"keywords": [
"Counter-Strike",
"CS",
"CSGO",
"CS:GO",
"CS2",
"electron",
"react"
],
"main": "main.js",
"scripts": {
"build": "node ./scripts/build.mjs",
"compile": "tsc --noEmit",
"deadcode": "knip",
"dev": "node ./scripts/develop.mjs",
"dev:cli": "node ./scripts/develop-cli.mjs",
"electron": "electron ./out/main.js",
"format": "prettier --write \"**\"",
"i18n:extract": "lingui extract --config ./lingui.config.ts --clean --overwrite && node ./scripts/fix-po-blank-lines.mjs && lingui extract --config ./src/electron-main/lingui.config.ts --clean --overwrite",
"lint": "eslint \"**\"",
"package": "electron-builder --config electron-builder.config.js",
"package:dir": "npm run package -- --dir",
"postinstall": "electron-builder install-app-deps && node ./scripts/postinstall.mjs && node ./scripts/build-linter-rules.mjs",
"t": "npm run test",
"tw": "npm run test:watch",
"test": "vitest --run",
"test:watch": "vitest"
},
"devDependencies": {
"@akiver/boiler-writter": "1.6.0",
"@akiver/cs-demo-analyzer": "1.4.12",
"@akiver/csgo-voice-extractor": "2.1.3",
"@crowdin/cli": "4.3.0",
"@eslint/js": "9.13.0",
"@floating-ui/react": "0.26.25",
"@lingui/cli": "4.13.0",
"@lingui/format-json": "4.13.0",
"@lingui/macro": "4.13.0",
"@lingui/react": "4.13.0",
"@lingui/vite-plugin": "4.13.0",
"@milkdown/kit": "7.5.5",
"@milkdown/react": "7.5.0",
"@react-spring/web": "9.7.5",
"@reduxjs/toolkit": "2.3.0",
"@tanstack/react-virtual": "3.10.8",
"@tomjs/electron-devtools-installer": "2.3.2",
"@types/archiver": "6.0.3",
"@types/fs-extra": "11.0.4",
"@types/node": "22.8.4",
"@types/pg": "8.11.10",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/ws": "8.5.12",
"@vitejs/plugin-react": "4.3.3",
"archiver": "7.0.1",
"babel-plugin-macros": "3.1.0",
"chokidar": "4.0.1",
"crc64-ecma": "1.0.0",
"csgo-protobuf": "3.0.6",
"csgo-sharecode": "3.1.2",
"csstype": "3.1.3",
"date-fns": "4.1.0",
"deepmerge": "4.3.1",
"dotenv": "16.4.5",
"echarts": "5.5.1",
"electron": "33.0.2",
"electron-builder": "25.1.8",
"electron-updater": "6.3.9",
"electron-window-state": "5.0.3",
"esbuild": "0.24.0",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-check-file": "2.8.0",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-lingui": "0.6.0",
"eslint-plugin-local-rules": "3.0.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-tailwindcss": "3.17.5",
"fs-extra": "11.2.0",
"html-to-image": "1.11.11",
"knip": "5.34.3",
"kysely": "0.27.4",
"match-sorter": "7.0.0",
"milkdown-plugin-placeholder": "0.2.1",
"navigation-api-types": "0.5.1",
"node-stream-zip": "1.15.0",
"pg": "8.13.1",
"postcss": "8.4.47",
"prettier": "3.3.3",
"react": "18.3.1",
"react-day-picker": "8.10.1",
"react-dom": "18.3.1",
"react-redux": "9.1.2",
"react-router-dom": "6.27.0",
"redux": "5.0.1",
"registry-js": "1.16.0",
"source-map-support": "0.5.21",
"tailwindcss": "3.4.14",
"tinyglobby": "0.2.10",
"typescript": "5.6.3",
"typescript-eslint": "8.12.2",
"unbzip2-stream": "1.4.3",
"undici": "6.19.8",
"vdf-parser": "1.2.1",
"vite": "5.4.10",
"vitest": "2.1.4",
"ws": "8.18.0"
},
"engines": {
"node": "20"
},
"overrides": {
"esbuild": "0.24.0"
}
}