generated from SteamDeckHomebrew/decky-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.37 KB
/
package.json
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
{
"name": "cheatdeck",
"type": "module",
"version": "0.4.1",
"description": "Launch games with cheat or trainer and manage your launch options.",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"lint:frontend": "eslint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SheffeyG/CheatDeck.git"
},
"keywords": [
"decky",
"plugin",
"steam-deck",
"deck"
],
"author": "sheffey",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/SheffeyG/CheatDeck/issues"
},
"homepage": "https://github.com/SheffeyG/CheatDeck#readme",
"devDependencies": {
"@decky/rollup": "^1.0.1",
"@decky/ui": "^4.8.1",
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/uuid": "^10.0.0",
"@types/webpack": "^5.28.5",
"eslint": "^9.13.0",
"eslint-plugin-react": "^7.37.1",
"rollup": "^4.24.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
},
"dependencies": {
"@decky/api": "^1.1.2",
"qrcode.react": "^4.1.0",
"react-icons": "^5.3.0",
"tslib": "^2.8.0",
"uuid": "^10.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
}
}
}