Vencord/package.json

89 lines
2.9 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",
2022-12-01 18:16:09 +00:00
"version": "1.0.1",
2022-10-13 22:12:43 +00:00
"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"
},
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",
2022-10-09 21:02:06 +00:00
"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",
2022-10-09 21:02:06 +00:00
"testTsc": "tsc --noEmit",
"uninject": "node scripts/patcher/uninstall.js",
"watch": "node scripts/build/build.mjs --watch"
2022-10-09 21:02:06 +00:00
},
"dependencies": {
"fflate": "^0.7.4"
2022-10-09 21:02:06 +00:00
},
"devDependencies": {
"@types/diff": "^5.0.2",
"@types/lodash": "^4.14.0",
2022-11-28 14:59:15 +00:00
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
2022-10-09 21:02:06 +00:00
"@types/yazl": "^2.4.2",
2022-11-28 14:59:15 +00:00
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vap/core": "0.0.12",
"@vap/shiki": "0.10.3",
2022-11-28 14:59:15 +00:00
"console-menu": "^0.1.0",
"diff": "^5.1.0",
2022-10-09 21:02:06 +00:00
"discord-types": "^1.3.26",
2022-11-28 14:59:15 +00:00
"esbuild": "^0.15.16",
"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",
2022-10-22 16:23:26 +00:00
"eslint-plugin-simple-import-sort": "^8.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",
2022-11-28 14:59:15 +00:00
"puppeteer-core": "^19.3.0",
"standalone-electron-types": "^1.0.0",
2022-11-28 14:59:15 +00:00
"type-fest": "^3.3.0",
"typescript": "^4.9.3"
2022-10-09 21:02:06 +00:00
},
2022-11-28 12:58:14 +00:00
"packageManager": "pnpm@7.13.4",
"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": [
"eslint-plugin-import"
]
},
"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"
2022-11-28 12:58:14 +00:00
}
2022-10-03 22:27:25 +00:00
}