forked from SpacingBat3/WebCord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.81 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
{
"$schema": "./schemas/schemastore/package.json",
"name": "webcord",
"productName": "WebCord",
"version": "3.8.8",
"description": "A Discord and Fosscord client made with the Electron API.",
"main": "app/code/common/main.js",
"scripts": {
"prepare": "husky install",
"test": "tsc & eslint --ext .json,.ts . & wait",
"lint": "eslint --ext .json,.ts .",
"tsc": "./node_modules/typescript/bin/tsc",
"build": "tsc",
"postinstall": "npm run build",
"start": "tsc && electron .",
"package": "tsc && electron-forge package",
"make": "tsc && electron-forge make",
"publish": "tsc && electron-forge publish"
},
"author": {
"name": "SpacingBat3",
"email": "[email protected]",
"url": "https://github.com/SpacingBat3"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SpacingBat3/WebCord"
},
"bugs": {
"url": "https://github.com/SpacingBat3/WebCord/issues"
},
"homepage": "https://github.com/SpacingBat3/WebCord#readme",
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.62",
"@electron-forge/maker-deb": "^6.0.0-beta.62",
"@electron-forge/maker-dmg": "^6.0.0-beta.62",
"@electron-forge/maker-flatpak": "^6.0.0-beta.64",
"@electron-forge/maker-rpm": "^6.0.0-beta.62",
"@electron-forge/maker-zip": "^6.0.0-beta.62",
"@electron-forge/publisher-github": "^6.0.0-beta.62",
"@electron/fuses": "^1.5.0",
"@reforged/maker-appimage": "^2.0.0",
"@tsconfig/node16-strictest": "^1.0.0",
"@types/dompurify": "^2.3.3",
"@types/marked": "^4.0.2",
"@types/node": "^18.6.4",
"@types/pkgjs__parseargs": "^0.10.0",
"@types/semver": "^7.3.9",
"@types/source-map-support": "^0.5.4",
"@types/spdx-expression-parse": "^3.0.1",
"@types/ws": "^8.5.1",
"@typescript-eslint/eslint-plugin": "~5.39.0",
"@typescript-eslint/parser": "~5.39.0",
"electron": ">=13.0.0 <22.0.0",
"eslint": "latest",
"eslint-import-resolver-typescript": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-json-schema-validator": "^4.0.0",
"husky": "^8.0.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@fontsource/fira-code": "^4.5.9",
"@fontsource/roboto": "^4.5.1",
"@fontsource/ubuntu": "^4.5.0",
"@pkgjs/parseargs": "^0.11.0",
"@spacingbat3/kolor": "^3.0.1",
"deepmerge-ts": "^4.0.0",
"dompurify": "^2.3.6",
"electron-fetch": "^1.7.3",
"highlight.js": "^11.4.0",
"marked": "^4.0.12",
"semver": "^7.3.5",
"source-map-support": "^0.5.21",
"spdx-expression-parse": "^3.0.1",
"tslib": "^2.3.1",
"twemoji-colr-font": "^14.0.2",
"ws": "^8.5.0"
},
"config": {
"forge": "./app/code/build/forge.js"
},
"engines": {
"node": "^16.0.0 || ^18.0.0",
"npm": "^8.0.0"
},
"private": true
}