Vencord/package.json

112 lines
4 KiB
JSON
Raw Permalink Normal View History

2022-08-29 00:25:27 +00:00
{
2022-10-13 22:12:43 +00:00
"name": "vencord",
"private": "true",
2024-09-05 00:25:27 +00:00
"version": "1.10.1",
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"
},
"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": {
"build": "node --require=./scripts/suppressExperimentalWarnings.js scripts/build/build.mjs",
2024-05-26 17:12:18 +00:00
"buildStandalone": "pnpm build --standalone",
"buildWeb": "node --require=./scripts/suppressExperimentalWarnings.js scripts/build/buildWeb.mjs",
"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-07-17 00:34:05 +00:00
"dev": "pnpm watch",
"watchWeb": "pnpm buildWeb --watch",
2023-03-23 03:37:32 +00:00
"generatePluginJson": "tsx scripts/generatePluginList.ts",
"generateTypes": "tspc --emitDeclarationOnly --declaration --outDir packages/vencord-types",
"inject": "node scripts/runInstaller.mjs",
"uninject": "node scripts/runInstaller.mjs",
"lint": "eslint",
"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",
"testWeb": "pnpm lint && pnpm buildWeb && pnpm testTsc",
"testTsc": "tsc --noEmit"
2022-10-09 21:02:06 +00:00
},
"dependencies": {
"@sapphi-red/web-noise-suppressor": "0.3.5",
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",
"fflate": "^0.8.2",
"gifenc": "github:mattdesl/gifenc#64842fca317b112a8590f8fef2bf3825da8f6fe3",
"monaco-editor": "^0.50.0",
"nanoid": "^5.0.7",
2023-04-02 14:12:19 +00:00
"virtual-merge": "^1.0.1"
2022-10-09 21:02:06 +00:00
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.6.1",
"@types/chrome": "^0.0.269",
"@types/diff": "^5.2.1",
"@types/lodash": "^4.17.7",
"@types/node": "^22.0.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/yazl": "^2.4.5",
"diff": "^5.2.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",
"eslint": "^9.8.0",
2022-11-28 12:58:14 +00:00
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-path-alias": "2.1.0",
"eslint-plugin-simple-header": "^1.1.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.0.1",
"highlight.js": "10.7.3",
2024-05-26 17:12:18 +00:00
"html-minifier-terser": "^7.2.0",
"moment": "^2.30.1",
"puppeteer-core": "^22.15.0",
"standalone-electron-types": "^1.0.0",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1",
"ts-patch": "^3.2.1",
2024-08-30 09:12:28 +00:00
"ts-pattern": "^5.3.1",
"tsx": "^4.16.5",
"type-fest": "^4.23.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0",
"typescript-transform-paths": "^3.4.7",
"zip-local": "^0.3.5"
2022-10-09 21:02:06 +00:00
},
"packageManager": "pnpm@9.1.0",
2022-11-28 12:58:14 +00:00
"pnpm": {
"patchedDependencies": {
"eslint@9.8.0": "patches/eslint@9.8.0.patch",
"eslint-plugin-path-alias@2.1.0": "patches/eslint-plugin-path-alias@2.1.0.patch"
},
"peerDependencyRules": {
"ignoreMissing": [
2023-01-25 20:05:35 +00:00
"eslint-plugin-import",
"eslint"
]
},
"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
},
"sourceDir": "./dist/firefox-unpacked"
},
"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
}