Vencord/package.json

59 lines
2 KiB
JSON
Raw Normal View History

2022-08-28 20:25:27 -04:00
{
2022-10-13 18:12:43 -04:00
"name": "vencord",
"private": "true",
"version": "1.0.0",
"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 17:02:06 -04:00
"scripts": {
"build": "node scripts/build/build.mjs",
"buildWeb": "node --require=./scripts/suppressExperimentalWarnings.js scripts/build/buildWeb.mjs",
2022-10-09 17:02:06 -04: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 17:02:06 -04:00
"testTsc": "tsc --noEmit",
"uninject": "node scripts/patcher/uninstall.js",
"watch": "node scripts/build/build.mjs --watch"
2022-10-09 17:02:06 -04:00
},
"dependencies": {
"console-menu": "^0.1.0",
"diff": "^5.1.0",
"fflate": "^0.7.4"
2022-10-09 17:02:06 -04:00
},
"devDependencies": {
"@types/diff": "^5.0.2",
2022-10-09 17:02:06 -04:00
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.8",
2022-10-09 17:02:06 -04:00
"@types/yazl": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
2022-10-09 17:02:06 -04:00
"@typescript-eslint/parser": "^5.39.0",
"discord-types": "^1.3.26",
"esbuild": "^0.15.5",
"eslint": "^8.24.0",
2022-10-21 19:17:06 -04:00
"eslint-plugin-header": "^3.1.1",
2022-10-22 12:23:26 -04:00
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
2022-11-25 09:59:47 -05:00
"moment": "^2.29.4",
2022-11-11 07:06:04 -05:00
"puppeteer-core": "^19.2.2",
"standalone-electron-types": "^1.0.0",
"type-fest": "^3.1.0",
2022-10-22 17:35:30 -04:00
"typescript": "^4.8.4"
2022-10-09 17:02:06 -04:00
},
2022-10-17 12:05:22 -04:00
"packageManager": "pnpm@7.13.4"
2022-10-03 18:27:25 -04:00
}