-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
87 lines (87 loc) · 2.89 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
{
"$schema": "./schemas/schemastore/package.json",
"name": "webcord",
"productName": "WebCord",
"version": "4.10.2",
"description": "A Discord and Fosscord client made with the Electron API.",
"main": "app/code/common/main.js",
"scripts": {
"prepare": "husky",
"test": "tsc && ESLINT_USE_FLAT_CONFIG=false eslint --cache --cache-location cache/eslint.json --ext .ts .",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --cache --cache-location cache/eslint.json --ext .ts .",
"build": "tsc",
"compile": "tsc",
"tsc": "tsc",
"watch": "tsc --watch",
"start": "tsc && electron .",
"package": "tsc && electron-forge package",
"make": "tsc && electron-forge make",
"publish": "tsc && electron-forge publish",
"prepack": "tsc && electron-forge package && echo 'This script will now fail to cancel creating a Node package...' && exit 1"
},
"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": "^7.1.0",
"@electron-forge/maker-deb": "^7.1.0",
"@electron-forge/maker-dmg": "^7.1.0",
"@electron-forge/maker-flatpak": "^7.1.0",
"@electron-forge/maker-rpm": "^7.1.0",
"@electron-forge/maker-snap": "^7.1.0",
"@electron-forge/maker-squirrel": "^7.1.0",
"@electron-forge/maker-wix": "^7.1.0",
"@electron-forge/maker-zip": "^7.1.0",
"@electron-forge/plugin-fuses": "^7.1.0",
"@electron-forge/publisher-github": "^7.1.0",
"@electron/fuses": "^1.5.0",
"@reforged/maker-appimage": "^4.0.0",
"@stylistic/eslint-plugin": "^2.3.0",
"@tsconfig/strictest": "^2.0.0",
"@types/dompurify": "^3.0.1",
"@types/node": "^20.16.1",
"@types/semver": "^7.3.9",
"@types/source-map-support": "^0.5.4",
"@types/ws": "^8.5.1",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"electron": "^32.0.1",
"eslint": "latest",
"eslint-import-resolver-typescript": "latest",
"eslint-plugin-import": "latest",
"husky": "^9.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@spacingbat3/disconnection": "^1.0.3",
"@spacingbat3/kolor": "^4.0.0",
"deepmerge-ts": "^7.0.3",
"dompurify": "^3.0.1",
"highlight.js": "^11.4.0",
"marked": "^14.0.0",
"marked-gfm-heading-id": "^4.0.0",
"marked-highlight": "^2.0.1",
"semver": "^7.3.5",
"source-map-support": "^0.5.21",
"tslib": "^2.3.1",
"twemoji-colr-font": "^15.0.3"
},
"config": {
"forge": "./app/code/build/forge.mjs"
},
"engines": {
"node": "^16.10.0 || ^18.10.0 || >=19.0.0",
"npm": "^8.0.0 || ^9.0.0 || ^10.0.0"
},
"private": true
}