2022-08-29 00:25:27 +00:00
|
|
|
{
|
2022-10-13 22:12:43 +00:00
|
|
|
"name": "vencord",
|
|
|
|
"private": "true",
|
2024-06-28 11:20:24 +00:00
|
|
|
"version": "1.9.3",
|
2023-01-25 20:05:35 +00:00
|
|
|
"description": "The cutest Discord client mod",
|
2022-10-13 22:12:43 +00:00
|
|
|
"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"
|
|
|
|
},
|
2023-08-10 00:17:49 +00:00
|
|
|
"license": "GPL-3.0-or-later",
|
2022-10-13 22:12:43 +00:00
|
|
|
"author": "Vendicated",
|
2022-10-09 21:02:06 +00:00
|
|
|
"scripts": {
|
2023-11-29 01:12:00 +00:00
|
|
|
"build": "node --require=./scripts/suppressExperimentalWarnings.js scripts/build/build.mjs",
|
2024-05-26 17:12:18 +00:00
|
|
|
"buildStandalone": "pnpm build --standalone",
|
2022-10-16 15:15:15 +00:00
|
|
|
"buildWeb": "node --require=./scripts/suppressExperimentalWarnings.js scripts/build/buildWeb.mjs",
|
2024-05-29 09:45:44 +00:00
|
|
|
"buildWebStandalone": "pnpm buildWeb --standalone",
|
|
|
|
"buildReporter": "pnpm buildWebStandalone --reporter --skip-extension",
|
2024-06-01 02:28:58 +00:00
|
|
|
"buildReporterDesktop": "pnpm build --reporter",
|
2024-05-26 17:12:18 +00:00
|
|
|
"watch": "pnpm build --watch",
|
2024-05-29 09:45:44 +00:00
|
|
|
"watchWeb": "pnpm buildWeb --watch",
|
2023-03-23 03:37:32 +00:00
|
|
|
"generatePluginJson": "tsx scripts/generatePluginList.ts",
|
2024-05-17 21:01:07 +00:00
|
|
|
"generateTypes": "tspc --emitDeclarationOnly --declaration --outDir packages/vencord-types",
|
2023-01-13 16:52:28 +00:00
|
|
|
"inject": "node scripts/runInstaller.mjs",
|
2024-05-17 21:01:07 +00:00
|
|
|
"uninject": "node scripts/runInstaller.mjs",
|
2023-04-07 19:17:54 +00:00
|
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-pattern src/userplugins",
|
|
|
|
"lint-styles": "stylelint \"src/**/*.css\" --ignore-pattern src/userplugins",
|
2022-10-09 21:02:06 +00:00
|
|
|
"lint:fix": "pnpm lint --fix",
|
2024-05-26 17:12:18 +00:00
|
|
|
"test": "pnpm buildStandalone && pnpm lint && pnpm lint-styles && pnpm testTsc && pnpm generatePluginJson",
|
2022-11-25 22:51:36 +00:00
|
|
|
"testWeb": "pnpm lint && pnpm buildWeb && pnpm testTsc",
|
2024-05-17 21:01:07 +00:00
|
|
|
"testTsc": "tsc --noEmit"
|
2022-10-09 21:02:06 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-08-15 23:32:11 +00:00
|
|
|
"@sapphi-red/web-noise-suppressor": "0.3.3",
|
2023-01-25 20:05:35 +00:00
|
|
|
"@vap/core": "0.0.12",
|
2023-04-30 15:11:38 +00:00
|
|
|
"@vap/shiki": "0.10.5",
|
2023-08-10 22:14:50 +00:00
|
|
|
"eslint-plugin-simple-header": "^1.0.2",
|
2023-04-01 00:47:49 +00:00
|
|
|
"fflate": "^0.7.4",
|
2023-09-19 02:07:24 +00:00
|
|
|
"gifenc": "github:mattdesl/gifenc#64842fca317b112a8590f8fef2bf3825da8f6fe3",
|
2024-06-21 23:10:08 +00:00
|
|
|
"monaco-editor": "^0.50.0",
|
2023-04-02 14:12:19 +00:00
|
|
|
"nanoid": "^4.0.2",
|
|
|
|
"virtual-merge": "^1.0.1"
|
2022-10-09 21:02:06 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-09-19 02:07:24 +00:00
|
|
|
"@types/chrome": "^0.0.246",
|
2023-04-30 15:11:38 +00:00
|
|
|
"@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",
|
2022-10-09 21:02:06 +00:00
|
|
|
"@types/yazl": "^2.4.2",
|
2023-04-30 15:11:38 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.59.1",
|
|
|
|
"@typescript-eslint/parser": "^5.59.1",
|
2022-11-28 14:59:15 +00:00
|
|
|
"diff": "^5.1.0",
|
2022-10-09 21:02:06 +00:00
|
|
|
"discord-types": "^1.3.26",
|
2023-01-25 20:05:35 +00:00
|
|
|
"esbuild": "^0.15.18",
|
2023-08-10 22:14:50 +00:00
|
|
|
"eslint": "^8.46.0",
|
2022-11-28 12:58:14 +00:00
|
|
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
|
|
"eslint-plugin-path-alias": "^1.0.0",
|
2023-04-30 15:11:38 +00:00
|
|
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
2022-10-23 21:23:52 +00:00
|
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
2022-12-02 15:43:37 +00:00
|
|
|
"highlight.js": "10.6.0",
|
2024-05-26 17:12:18 +00:00
|
|
|
"html-minifier-terser": "^7.2.0",
|
2022-11-25 14:59:47 +00:00
|
|
|
"moment": "^2.29.4",
|
2023-04-30 15:11:38 +00:00
|
|
|
"puppeteer-core": "^19.11.1",
|
2022-10-11 15:48:14 +00:00
|
|
|
"standalone-electron-types": "^1.0.0",
|
2023-04-30 15:11:38 +00:00
|
|
|
"stylelint": "^15.6.0",
|
|
|
|
"stylelint-config-standard": "^33.0.0",
|
2024-05-17 21:01:07 +00:00
|
|
|
"ts-patch": "^3.1.2",
|
2023-04-30 15:11:38 +00:00
|
|
|
"tsx": "^3.12.7",
|
|
|
|
"type-fest": "^3.9.0",
|
2024-05-17 21:01:07 +00:00
|
|
|
"typescript": "^5.4.5",
|
|
|
|
"typescript-transform-paths": "^3.4.7",
|
|
|
|
"zip-local": "^0.3.5"
|
2022-10-09 21:02:06 +00:00
|
|
|
},
|
2024-05-07 02:54:25 +00:00
|
|
|
"packageManager": "pnpm@9.1.0",
|
2022-11-28 12:58:14 +00:00
|
|
|
"pnpm": {
|
|
|
|
"patchedDependencies": {
|
2022-12-19 22:59:54 +00:00
|
|
|
"eslint-plugin-path-alias@1.0.0": "patches/eslint-plugin-path-alias@1.0.0.patch",
|
2023-08-10 22:14:50 +00:00
|
|
|
"eslint@8.46.0": "patches/eslint@8.46.0.patch"
|
2022-12-25 19:47:35 +00:00
|
|
|
},
|
|
|
|
"peerDependencyRules": {
|
|
|
|
"ignoreMissing": [
|
2023-01-25 20:05:35 +00:00
|
|
|
"eslint-plugin-import",
|
|
|
|
"eslint"
|
2022-12-25 19:47:35 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"allowedDeprecatedVersions": {
|
|
|
|
"source-map-resolve": "*",
|
|
|
|
"resolve-url": "*",
|
|
|
|
"source-map-url": "*",
|
|
|
|
"urix": "*"
|
2022-11-28 12:58:14 +00:00
|
|
|
}
|
2022-12-01 18:16:09 +00:00
|
|
|
},
|
|
|
|
"webExt": {
|
|
|
|
"artifactsDir": "./dist",
|
|
|
|
"build": {
|
|
|
|
"overwriteDest": true
|
|
|
|
},
|
2023-10-09 01:49:33 +00:00
|
|
|
"sourceDir": "./dist/firefox-unpacked"
|
2023-01-23 03:02:09 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-04-06 01:32:18 +00:00
|
|
|
"node": ">=18",
|
2024-06-01 03:30:18 +00:00
|
|
|
"pnpm": ">=9"
|
2022-11-28 12:58:14 +00:00
|
|
|
}
|
2022-10-03 22:27:25 +00:00
|
|
|
}
|