-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1012 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1012 Bytes
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
{
"name": "deck-progress-tracker",
"version": "1.3.6",
"type": "module",
"description": "Game tagging plugin for Steam Deck",
"scripts": {
"build": "shx rm -rf dist && rollup -c",
"watch": "rollup -c -w",
"test": "jest"
},
"keywords": [
"decky",
"steam-deck",
"gaming",
"achievements"
],
"author": "Maron",
"license": "BSD-3-Clause",
"dependencies": {
"@decky/api": "^1.1.2",
"@decky/ui": "^4.6.2",
"chrome-remote-interface": "^0.34.0",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@decky/rollup": "^1.0.2",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/react": "^18.0.0",
"rollup": "^2.52.7",
"shx": "^0.3.3",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
}
}
}