-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "microsdeck",
"version": "0.0.0",
"description": "A SteamDeck plugin to track games across MicroSD cards",
"type": "module",
"keywords": [
"decky",
"plugin",
"steam-deck",
"deck",
"miocrosd-card",
"microsd"
],
"author": "Christopher-Robin <git@cebbinghaus.com>",
"license": "GPL-2.0",
"scripts": {
"prebuild": "exec node --no-warnings=ExperimentalWarning util/versioning.mjs update package.json lib/package.json",
"build": "shx rm -rf dist && rollup -c",
"bundle": "shx rm -rf dist && rollup -c",
"watch": "rollup -c -w",
"preinstall": "cd lib && pnpm i"
},
"bugs": {
"url": "https://github.com/CEbbinghaus/MicroSDeck/issues"
},
"homepage": "https://github.com/CEbbinghaus/MicroSDeck#readme",
"devDependencies": {
"@decky/ui": "^4.7.1",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/markdown-it": "^13.0.9",
"@types/react": "16.14.0",
"@types/webpack": "^5.28.5",
"merge-anything": "^6.0.2",
"rollup": "^4.22.4",
"rollup-plugin-codegen": "^1.0.0",
"rollup-plugin-external-globals": "^0.11.0",
"rollup-plugin-import-assets": "^1.1.1",
"shx": "^0.3.4",
"tslib": "^2.7.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@cebbinghaus/microsdeck": "link:lib",
"@decky/api": "^1.1.2",
"@decky/rollup": "^1.0.1",
"@mdx-js/react": "^3.0.1",
"@mdx-js/rollup": "^3.0.1",
"lipe": "^0.3.4",
"react": "^18.3.1",
"react-icons": "^4.12.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
}
}
}