This repository has been archived by the owner on Sep 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "creators-tf-launcher",
"version": "0.3.0",
"description": "An easier way to install, update and play TF2 content.",
"main": "build/main.js",
"scripts": {
"start": "electron .",
"lint": "eslint **/*",
"dev:compileTs": "npx tsc -w",
"dev:compileSass": "sass styles/:styles/ --watch",
"compileTs": "npx tsc",
"compileSass": "sass styles/:styles/",
"compileTsAndStart": "npx tsc && electron .",
"compileAndStart": "npx tsc && sass styles/:styles/ && electron .",
"buildWindows": "electron-builder build --win --x64 --ia32 --publish never",
"buildLinux": "electron-builder build --linux AppImage deb tar.gz --publish never"
},
"keywords": [
"TF2",
"Creators.TF",
"Team Fortress"
],
"author": {
"name": "Creators.TF",
"email": "support@creators.tf",
"url": "https://creators.tf/launcher"
},
"repository": {
"type": "git",
"url": "https://github.com/CreatorsTF/Creators.TF-Community-Launcher.git"
},
"license": "MIT",
"devDependencies": {
"@types/electron-progressbar": "^1.2.2",
"@types/marked": "^4.0.1",
"@types/string-format": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"electron": "16.0.7",
"electron-builder": "22.9.1",
"eslint": "^7.31.0",
"sass": "^1.49.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@mdi/font": "^5.9.55",
"@types/node": "^14.14.40",
"axios": "^0.22.0",
"electron-is-dev": "^1.2.0",
"electron-log": "^4.3.4",
"electron-progressbar": "^2.0.0",
"electron-updater": "^4.3.8",
"flag-icon-css": "^3.5.0",
"jszip": "^3.6.0",
"marked": "^4.0.12",
"semver": "^7.3.5",
"string-format": "^2.0.0"
}
}