Vencord/package.json

99 lines
3.2 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",
2023-04-29 23:27:08 +00:00
"version": "1.2.0",
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",
"author": "Vendicated",
"directories": {
"doc": "docs"
},
2022-10-09 21:02:06 +00:00
"scripts": {
"build": "node scripts/build/build.mjs",
"buildWeb": "node --require=./scripts/suppressExperimentalWarnings.js scripts/build/buildWeb.mjs",
2023-03-23 03:37:32 +00:00
"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",
2022-10-09 21:02:06 +00:00
"lint:fix": "pnpm lint --fix",
2023-01-30 04:02:17 +00:00
"test": "pnpm build && pnpm lint && pnpm lint-styles && pnpm testTsc",
"testWeb": "pnpm lint && pnpm buildWeb && pnpm testTsc",
2022-10-09 21:02:06 +00:00
"testTsc": "tsc --noEmit",
"uninject": "node scripts/runInstaller.mjs",
"watch": "node scripts/build/build.mjs --watch"
2022-10-09 21:02:06 +00:00
},
"dependencies": {
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-04-01 00:47:49 +00:00
"fflate": "^0.7.4",
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-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",
2022-11-28 14:59:15 +00:00
"eslint": "^8.28.0",
2022-11-28 12:58:14 +00:00
"eslint-import-resolver-alias": "^1.1.2",
2022-10-21 23:17:06 +00:00
"eslint-plugin-header": "^3.1.1",
2022-11-28 12:58:14 +00:00
"eslint-plugin-path-alias": "^1.0.0",
2023-04-30 15:11:38 +00:00
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"highlight.js": "10.6.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",
"standalone-electron-types": "^1.0.0",
2023-04-30 15:11:38 +00:00
"stylelint": "^15.6.0",
"stylelint-config-standard": "^33.0.0",
"tsx": "^3.12.7",
"type-fest": "^3.9.0",
"typescript": "^5.0.4"
2022-10-09 21:02:06 +00:00
},
2023-04-06 01:32:18 +00:00
"packageManager": "pnpm@8.1.1",
2022-11-28 12:58:14 +00:00
"pnpm": {
"patchedDependencies": {
"eslint-plugin-path-alias@1.0.0": "patches/eslint-plugin-path-alias@1.0.0.patch",
"eslint@8.28.0": "patches/eslint@8.28.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/extension-v2-unpacked"
},
"engines": {
2023-04-06 01:32:18 +00:00
"node": ">=18",
"pnpm": ">=8"
2022-11-28 12:58:14 +00:00
}
2022-10-03 22:27:25 +00:00
}