-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
103 lines (103 loc) · 3.17 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "decky-steamgriddb",
"version": "1.5.1",
"description": "Decky plugin to manage Steam artwork from within gaming mode.",
"type": "module",
"scripts": {
"build": "shx rm -rf dist && rollup -c --environment ROLLUP_ENV:production",
"watch": "rollup -c -w --environment ROLLUP_ENV:development",
"watch:vm-dev": "npm run watch -- --watch.onEnd=\"pnpm run copy-to-vm\"",
"watch:win-dev": "npm run watch -- --watch.onEnd=\"pnpm run copy-to-win\"",
"copy-to-vm": "pscp -P 50658 -pw 123 -r ./dist/ [email protected]:/home/manjaro/homebrew/plugins/decky-steamgriddb/dist",
"copy-to-win": "robocopy /E /NS /NC /NDL /NFL /NJS /NJH /NP dist \"%USERPROFILE%\\homebrew\\plugins\\decky-steamgriddb\\dist\" || exit 0",
"dump-strings": "node ./dump-strings.js",
"lint": "eslint --ext .ts,.tsx,.js src",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "github:SteamGridDB/decky-steamgriddb",
"keywords": [
"decky",
"plugin",
"steam-deck",
"deck",
"steamgriddb"
],
"author": {
"name": "Jozen Blue Martinez",
"email": "[email protected]",
"url": "https://jozen.blue/"
},
"contributors": [
{
"name": "Travis Lane (Tormak)",
"email": "[email protected]"
}
],
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/steamgriddb"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/steamgriddb"
}
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/SteamGridDB/decky-steamgriddb/issues"
},
"homepage": "https://github.com/SteamGridDB/decky-steamgriddb#readme",
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@decky/rollup": "^1.0.1",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-typescript": "^11.1.6",
"@types/react": "18.2.0",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"rollup": "^4.20.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-external-globals": "^0.11.0",
"rollup-plugin-import-assets": "^1.1.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-scss": "^3.0.0",
"sass": "^1.77.8",
"shx": "^0.3.4",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@decky/api": "^1.1.2",
"@decky/ui": "^4.7.0",
"async-wait-until": "^2.0.12",
"just-debounce": "^1.1.0",
"qrcode.react": "^3.1.0",
"react-fast-compare": "^3.2.2",
"react-icons": "^4.12.0",
"react-markdown": "^8.0.7",
"react-string-replace": "^1.1.1",
"remark-gfm": "^3.0.1"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
}
}
}