generated from SteamDeckHomebrew/decky-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
72 lines (72 loc) · 2.14 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
{
"name": "moondeck",
"version": "1.8.4",
"description": "MoonDeck lets you play any of your Steam games via Moonlight without needing to add them to Sunshine first, providing a similar experience to GeForce GameStream or Steam Remote Play.",
"type": "module",
"scripts": {
"build": "pnpm run unlink-python && rollup -c",
"link-python": "pnpm run unlink-python && shx ln -s ./defaults/python ./python",
"unlink-python": "shx --silent test -L ./python && shx rm ./python || shx true",
"build-dev": "shx rm -rf dist && pnpm run link-python && rollup -c",
"watch": "pnpm run link-python && rollup -c -w",
"test": "npx eslint src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrogTheFrog/moondeck"
},
"keywords": [
"decky",
"plugin",
"plugin-template",
"steam-deck",
"deck"
],
"author": "FrogTheFrog",
"license": "GNU GPLv3",
"bugs": {
"url": "https://github.com/FrogTheFrog/moondeck/issues"
},
"homepage": "https://github.com/FrogTheFrog/moondeck#readme",
"devDependencies": {
"@decky/rollup": "^1.0.1",
"@decky/ui": "^4.8.2",
"@types/lodash": "^4.14.184",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "^39.3.12",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.10",
"rollup": "^4.18.0",
"shx": "^0.3.4",
"typescript": "^5.5.3"
},
"dependencies": {
"@decky/api": "^1.1.0",
"async-mutex": "^0.4.0",
"ip-regex": "^5.0.0",
"lodash": "^4.17.21",
"mobx": "^6.12.0",
"promise-throttle-all": "^1.1.1",
"react-icons": "^5.2.1",
"rxjs": "^7.5.6",
"ts-bidirectional-map": "^1.0.2",
"tslib": "^2.6.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
}
}
}