-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·71 lines (71 loc) · 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
{
"name": "RetroDECKY",
"version": "1.2.0",
"description": "A Decky plugin for RetroDECK.",
"type": "module",
"scripts": {
"build": "rollup -c",
"postinstall": "pip install -r requirements.txt -t py_modules --upgrade",
"watch": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"generate-actions": "python scripts/generate_actions.py && python scripts/generate_summary.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Teppichseite/RetroDECKY.git"
},
"keywords": [
"decky",
"plugin",
"steam-deck",
"deck",
"RetroDECK",
"emulation"
],
"author": "Teppichseite",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Teppichseite/RetroDECKY/issues"
},
"homepage": "https://github.com/Teppichseite/RetroDECKY",
"devDependencies": {
"@decky/rollup": "^1.0.2",
"@decky/ui": "^4.11.1",
"@rollup/rollup-linux-x64-musl": "^4.53.3",
"@types/lodash": "^4.17.24",
"@types/react": "19.1.1",
"@types/react-dom": "19.1.1",
"@types/webpack": "^5.28.5",
"prettier": "^3.2.5",
"rollup": "^4.53.3",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@decky/api": "^1.1.3",
"@rollup/plugin-url": "^8.0.2",
"lodash": "^4.17.21",
"pdfjs-dist": "5.4.296",
"react-icons": "^5.3.0",
"react-pdf": "^10.2.0",
"tslib": "^2.7.0"
},
"remote_binary_bundling" : true,
"remote_binary": [
{
"name": "RAHasher.zip",
"url": "https://github.com/RetroAchievements/RALibretro/releases/download/1.8.4/RAHasher-x64-Linux-1.8.4.zip",
"sha256hash": "406245d66805e3e14d093a162e2b8cbfce3317342e913444b0f4d401ed0b39d6"
}
],
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
}
}
}