forked from Nexus-Mods/Vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 4.2 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 4.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"$schema": "https://www.schemastore.org/package.json",
"name": "@vortex/monorepo",
"version": "1.0.0",
"private": true,
"type": "commonjs",
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"engines": {
"node": "22"
},
"volta": {
"node": "22.22.0",
"yarn": "1.22.19"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "pnpm -F @vortex/main run start",
"build": "pnpm run typecheck && pnpm --filter \"@vortex/*\" -r run build",
"build:all": "pnpm run build && pnpm run build:extensions && pnpm run build:assets",
"build:extensions": "pnpm run api && pnpm run typecheck:extensions && pnpm --filter \"./extensions/**\" run build",
"build:assets": "node ./scripts/dependency-report.mjs && node ./InstallAssets.mjs ./src/main/out && pnpm sass --style compressed --silence-deprecation=import ./src/stylesheets/loadingScreen.scss ./src/main/out/assets/css/loadingScreen.css && pnpm tailwindcss -i ./src/stylesheets/tailwind-v4.css -o ./src/main/out/assets/css/tailwind-v4.css -m",
"dist": "pnpm run typecheck && pnpm --filter \"@vortex/*\" -r run dist",
"dist:all": "pnpm run dist && pnpm run dist:extensions && pnpm run dist:assets",
"dist:extensions": "pnpm run api && pnpm --filter \"./extensions/**\" run dist",
"dist:assets": "node ./scripts/dependency-report.mjs && node ./InstallAssets.mjs ./src/main/dist && pnpm sass --style compressed --silence-deprecation=import ./src/stylesheets/loadingScreen.scss ./src/main/dist/assets/css/loadingScreen.css && pnpm tailwindcss -i ./src/stylesheets/tailwind-v4.css -o ./src/main/dist/assets/css/tailwind-v4.css -m",
"package": "pnpm run dist:all && pnpm -F @vortex/main run package",
"package:nosign": "pnpm run dist:all && pnpm -F @vortex/main run package:nosign",
"typecheck": "pnpm -F @vortex/shared run build && pnpm -F @vortex/paths run build && pnpm --filter \"@vortex/*\" -r run typecheck",
"typecheck:extensions": "pnpm --filter \"./extensions/**\" run typecheck",
"lint": "pnpm -r run lint",
"lint:quiet": "pnpm -r run lint:quiet",
"lint:ci": "pnpm run lint:quiet",
"test": "pnpm vitest run --coverage && pnpm -F @vortex/renderer run test:jest",
"test:watch": "pnpm vitest",
"api": "pnpm -F @vortex/renderer run api:build && pnpm -F @vortex/renderer run api:docs && pnpm -F vortex-api run typecheck",
"format": "pnpm oxfmt",
"format:check": "pnpm oxfmt --check",
"e2e": "pnpm -F @vortex/e2e run test",
"e2e:headed": "pnpm -F @vortex/e2e run test:headed",
"e2e:debug": "pnpm -F @vortex/e2e run test:debug",
"generate:query-types": "npx tsx scripts/generate-query-types.ts"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "catalog:",
"@eslint/js": "catalog:",
"@microsoft/api-extractor": "catalog:",
"@stylistic/eslint-plugin": "catalog:",
"@tailwindcss/cli": "catalog:",
"@types/copyfiles": "catalog:",
"@types/minimist": "catalog:",
"@types/node": "catalog:",
"@types/webpack-node-externals": "catalog:",
"@typescript-eslint/utils": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"copyfiles": "catalog:",
"cross-env": "catalog:",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"eslint-import-resolver-typescript": "catalog:",
"eslint-plugin-better-tailwindcss": "catalog:",
"eslint-plugin-import": "catalog:",
"eslint-plugin-perfectionist": "catalog:",
"fork-ts-checker-webpack-plugin": "catalog:",
"glob": "catalog:",
"globals": "catalog:",
"minimist": "catalog:",
"oxfmt": "catalog:",
"p-limit": "catalog:",
"rimraf": "catalog:",
"rolldown": "catalog:",
"sass": "catalog:",
"source-map-loader": "catalog:",
"tailwindcss": "catalog:",
"terser-webpack-plugin": "catalog:",
"ts-loader": "catalog:",
"tsconfig-paths-webpack-plugin": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"webpack": "catalog:",
"webpack-cli": "catalog:",
"webpack-node-externals": "catalog:"
}
}