ModularVencord/package.json

113 lines
4.2 KiB
JSON
Raw Normal View History

2022-08-29 00:25:27 +00:00
{
2022-10-13 22:12:43 +00:00
"name": "vencord",
"private": "true",
2024-07-25 11:49:01 +00:00
"version": "1.9.6",
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",
2024-06-15 19:45:14 +00:00
"generatePluginJson": "tsx scripts/generatePluginList.mts",
"generateTypes": "tspc --emitDeclarationOnly --declaration --outDir packages/vencord-types",
"inject": "node scripts/runInstaller.mjs",
"uninject": "node scripts/runInstaller.mjs",
"lint": "eslint . --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",
"testWeb": "pnpm lint && pnpm buildWeb && pnpm testTsc",
"testTsc": "tsc --noEmit --emitDeclarationOnly false"
2022-10-09 21:02:06 +00:00
},
"dependencies": {
2024-07-07 00:22:28 +00:00
"@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",
2024-07-07 00:22:28 +00:00
"fflate": "^0.8.2",
"gifenc": "github:mattdesl/gifenc#64842fca317b112a8590f8fef2bf3825da8f6fe3",
"monaco-editor": "^0.50.0",
2024-07-20 06:19:31 +00:00
"nanoid": "^5.0.7"
2022-10-09 21:02:06 +00:00
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.3.0",
"@stylistic/stylelint-config": "^1.0.1",
"@stylistic/stylelint-plugin": "^2.1.2",
2024-07-25 08:17:55 +00:00
"@types/chrome": "^0.0.269",
2024-06-15 02:43:09 +00:00
"@types/diff": "^5.2.1",
"@types/html-minifier-terser": "^7.0.2",
2024-07-16 18:50:46 +00:00
"@types/lodash": "~4.17.7",
2024-07-25 08:17:55 +00:00
"@types/node": "^18.19.42",
2024-06-05 02:56:03 +00:00
"@types/react": "~18.2.79",
2024-06-08 04:35:13 +00:00
"@types/react-dom": "~18.2.25",
2024-06-15 02:43:09 +00:00
"@types/yazl": "^2.4.5",
2024-06-02 00:07:54 +00:00
"@vencord/discord-types": "workspace:^",
2024-06-15 02:43:09 +00:00
"diff": "^5.2.0",
2024-07-25 08:17:55 +00:00
"discord-types": "latest",
2024-07-07 00:22:28 +00:00
"esbuild": "^0.23.0",
"eslint": "^9.7.0",
2024-06-24 23:05:52 +00:00
"eslint-plugin-path-alias": "^2.1.0",
"eslint-plugin-simple-header": "^1.1.1",
2024-07-07 00:22:28 +00:00
"eslint-plugin-simple-import-sort": "^12.1.1",
2024-07-24 08:24:14 +00:00
"eslint-plugin-unused-imports": "^4.0.1",
2024-06-15 02:43:09 +00:00
"highlight.js": "11.8.0",
2024-05-26 17:12:18 +00:00
"html-minifier-terser": "^7.2.0",
2024-06-02 00:07:54 +00:00
"moment": "2.22.2",
2024-07-18 21:48:20 +00:00
"puppeteer-core": "^22.13.1",
"standalone-electron-types": "^1.0.0",
"stylelint": "^16.7.0",
"stylelint-config-standard": "^36.0.1",
2024-07-07 00:22:28 +00:00
"ts-patch": "^3.2.1",
"tsx": "^4.16.2",
2024-07-24 08:24:14 +00:00
"type-fest": "^4.23.0",
"typescript": "^5.5.4",
2024-07-25 08:17:55 +00:00
"typescript-eslint": "^8.0.0-alpha.53",
"typescript-transform-paths": "^3.4.7",
"zip-local": "^0.3.5"
2022-10-09 21:02:06 +00:00
},
2024-07-24 08:24:14 +00:00
"packageManager": "pnpm@9.6.0",
2022-11-28 12:58:14 +00:00
"pnpm": {
"patchedDependencies": {
2024-06-24 23:05:52 +00:00
"eslint-plugin-path-alias@2.1.0": "patches/eslint-plugin-path-alias@2.1.0.patch",
"eslint@9.7.0": "patches/eslint@9.7.0.patch",
"standalone-electron-types@1.0.0": "patches/standalone-electron-types@1.0.0.patch"
},
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
},
"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
}
2024-06-15 23:45:14 +00:00
}