aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 20eabb783b78bd54ac37d4757405747936b61fdf (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
{
    "name": "vencord",
    "private": "true",
    "version": "1.0.0",
    "description": "A Discord client mod that does things differently",
    "keywords": [],
    "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",
    "author": "Vendicated",
    "directories": {
        "doc": "docs"
    },
    "scripts": {
        "build": "node scripts/build/build.mjs",
        "buildWeb": "node --require=./scripts/suppressExperimentalWarnings.js scripts/build/buildWeb.mjs",
        "inject": "node scripts/patcher/install.js",
        "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
        "lint:fix": "pnpm lint --fix",
        "test": "pnpm lint && pnpm build && pnpm testTsc",
        "testWeb": "pnpm lint && pnpm buildWeb && pnpm testTsc",
        "testTsc": "tsc --noEmit",
        "uninject": "node scripts/patcher/uninstall.js",
        "watch": "node scripts/build/build.mjs --watch"
    },
    "dependencies": {
        "fflate": "^0.7.4"
    },
    "devDependencies": {
        "@types/diff": "^5.0.2",
        "@types/node": "^18.11.9",
        "@types/react": "^18.0.25",
        "@types/react-dom": "^18.0.9",
        "@types/yazl": "^2.4.2",
        "@typescript-eslint/eslint-plugin": "^5.44.0",
        "@typescript-eslint/parser": "^5.44.0",
        "console-menu": "^0.1.0",
        "diff": "^5.1.0",
        "discord-types": "^1.3.26",
        "esbuild": "^0.15.16",
        "eslint": "^8.28.0",
        "eslint-import-resolver-alias": "^1.1.2",
        "eslint-plugin-header": "^3.1.1",
        "eslint-plugin-path-alias": "^1.0.0",
        "eslint-plugin-simple-import-sort": "^8.0.0",
        "eslint-plugin-unused-imports": "^2.0.0",
        "moment": "^2.29.4",
        "puppeteer-core": "^19.3.0",
        "standalone-electron-types": "^1.0.0",
        "type-fest": "^3.3.0",
        "typescript": "^4.9.3"
    },
    "packageManager": "pnpm@7.13.4",
    "pnpm": {
        "patchedDependencies": {
            "eslint-plugin-path-alias@1.0.0": "patches/eslint-plugin-path-alias@1.0.0.patch"
        }
    }
}