aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: a07bb247defe9dbf600ba7d8e40ec26be6184f14 (plain)
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
{
    "name": "vencord",
    "private": "true",
    "version": "1.4.5",
    "description": "The cutest Discord client mod",
    "homepage": "https://github.com/Vendicated/Vencord#readme",
    "bugs": {
        "url": "https://github.com/Vendicated/Vencord/issues"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/Vendicated/Vencord.git"
    },
    "license": "GPL-3.0-or-later",
    "author": "Vendicated",
    "directories": {
        "doc": "docs"
    },
    "scripts": {
        "build": "node scripts/build/build.mjs",
        "buildWeb": "node --require=./scripts/suppressExperimentalWarnings.js scripts/build/buildWeb.mjs",
        "generatePluginJson": "tsx scripts/generatePluginList.ts",
        "inject": "node scripts/runInstaller.mjs",
        "lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-pattern src/userplugins",
        "lint-styles": "stylelint \"src/**/*.css\" --ignore-pattern src/userplugins",
        "lint:fix": "pnpm lint --fix",
        "test": "pnpm build && pnpm lint && pnpm lint-styles && pnpm testTsc && pnpm generatePluginJson",
        "testWeb": "pnpm lint && pnpm buildWeb && pnpm testTsc",
        "testTsc": "tsc --noEmit",
        "uninject": "node scripts/runInstaller.mjs",
        "watch": "node scripts/build/build.mjs --watch"
    },
    "dependencies": {
        "@sapphi-red/web-noise-suppressor": "0.3.3",
        "@vap/core": "0.0.12",
        "@vap/shiki": "0.10.5",
        "eslint-plugin-simple-header": "^1.0.2",
        "fflate": "^0.7.4",
        "nanoid": "^4.0.2",
        "virtual-merge": "^1.0.1"
    },
    "devDependencies": {
        "@types/diff": "^5.0.3",
        "@types/lodash": "^4.14.194",
        "@types/node": "^18.16.3",
        "@types/react": "^18.2.0",
        "@types/react-dom": "^18.2.1",
        "@types/yazl": "^2.4.2",
        "@typescript-eslint/eslint-plugin": "^5.59.1",
        "@typescript-eslint/parser": "^5.59.1",
        "diff": "^5.1.0",
        "discord-types": "^1.3.26",
        "esbuild": "^0.15.18",
        "eslint": "^8.46.0",
        "eslint-import-resolver-alias": "^1.1.2",
        "eslint-plugin-path-alias": "^1.0.0",
        "eslint-plugin-simple-import-sort": "^10.0.0",
        "eslint-plugin-unused-imports": "^2.0.0",
        "highlight.js": "10.6.0",
        "moment": "^2.29.4",
        "puppeteer-core": "^19.11.1",
        "standalone-electron-types": "^1.0.0",
        "stylelint": "^15.6.0",
        "stylelint-config-standard": "^33.0.0",
        "tsx": "^3.12.7",
        "type-fest": "^3.9.0",
        "typescript": "^5.0.4"
    },
    "packageManager": "pnpm@8.1.1",
    "pnpm": {
        "patchedDependencies": {
            "eslint-plugin-path-alias@1.0.0": "patches/eslint-plugin-path-alias@1.0.0.patch",
            "eslint@8.46.0": "patches/eslint@8.46.0.patch"
        },
        "peerDependencyRules": {
            "ignoreMissing": [
                "eslint-plugin-import",
                "eslint"
            ]
        },
        "allowedDeprecatedVersions": {
            "source-map-resolve": "*",
            "resolve-url": "*",
            "source-map-url": "*",
            "urix": "*"
        }
    },
    "webExt": {
        "artifactsDir": "./dist",
        "build": {
            "overwriteDest": true
        },
        "sourceDir": "./dist/extension-v2-unpacked"
    },
    "engines": {
        "node": ">=18",
        "pnpm": ">=8"
    }
}