-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.62 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
{
"name": "loadout",
"version": "0.4.0",
"private": true,
"description": "An open, hackable plugin overlay for Steam Deck and Linux gaming handhelds — TDP, RGB, frame-gen, recompiled games, and more, in-game over Steam Big Picture.",
"license": "BSD-3-Clause",
"author": "Simon Holmes",
"repository": {
"type": "git",
"url": "git+https://github.com/srsholmes/loadout.git"
},
"homepage": "https://github.com/srsholmes/loadout#readme",
"bugs": {
"url": "https://github.com/srsholmes/loadout/issues"
},
"keywords": [
"steam-deck",
"steamos",
"handheld",
"linux-gaming",
"overlay",
"gamescope",
"bun",
"electrobun",
"plugins"
],
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"plugins/*"
],
"scripts": {
"dev": "bun run apps/loadout/src/index.ts",
"dev:overlay": "bash scripts/dev-overlay.sh",
"dev:electrobun": "bun --filter @loadout/loadout-overlay dev",
"build": "sh scripts/build.sh",
"install-local": "sh scripts/install-local.sh",
"build-and-install": "sh scripts/build.sh && sh scripts/install-local.sh",
"restart": "sh scripts/restart-loadout.sh",
"release": "sh scripts/release.sh",
"typecheck": "tsgo -p tsconfig.json",
"typecheck:tsc": "tsc --noEmit",
"test": "bun run test:backend && bun run test:ui",
"test:backend": "bun test test.ts --isolate",
"test:ui": "bun test spec.tsx --preload ./test/bun-test-setup.ts --isolate",
"test:coverage": "bun test test.ts --isolate --coverage --coverage-dir=coverage/backend && bun test spec.tsx --preload ./test/bun-test-setup.ts --isolate --coverage --coverage-dir=coverage/ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check:specs": "sh scripts/check-plugin-specs.sh",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@tailwindcss/browser": "^4.2.2",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-icons": "^5.6.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@happy-dom/global-registrator": "^20.9.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "^1.3.10",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"happy-dom": "^20.9.0",
"prettier": "^3.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0"
}
}