-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "chrono-deck",
"version": "0.1.3",
"description": "A Decky plugin that displays metadata for games running through an emulator.",
"type": "module",
"scripts": {
"build": "shx rm -rf dist && rollup -c",
"lint": "tsc --noEmit & biome lint ./src/**/* & biome format ./src/**/* & pnpm eslint ./src/**/*",
"watch": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0u73r-h34v3n/chrono-deck.git"
},
"keywords": ["decky", "plugin", "steam-deck", "deck", "meta-deck", "meta"],
"author": "ynhhoJ",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/0u73r-h34v3n/chrono-deck/issues"
},
"homepage": "https://github.com/0u73r-h34v3n/chrono-deck#readme",
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@decky/rollup": "^1.0.1",
"@eslint/js": "^9.12.0",
"@types/bun": "^1.1.11",
"@types/react": "18.3.3",
"eslint": "^9.12.0",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.11.0",
"rollup": "^4.24.0",
"shx": "^0.3.4",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0"
},
"dependencies": {
"@decky/api": "^1.1.2",
"@decky/ui": "^4.8.1",
"async-wait-until": "^2.0.12",
"fastest-levenshtein": "^1.0.16",
"mobx": "^6.13.4",
"react-icons": "^5.3.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": ["react", "react-dom"]
}
}
}