generated from SteamDeckHomebrew/decky-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "PlayTime",
"version": "1.0.2",
"description": "PlayTime",
"scripts": {
"build": "shx rm -rf dist && rollup -c"
},
"keywords": [
"decky",
"plugin",
"plugin-template",
"steam-deck",
"deck"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^29.0.3",
"@types/lodash-es": "^4.14.184",
"@types/lodash.isequal": "^4.5.6",
"@types/luxon": "^3.3.1",
"@types/node": "^18.7.23",
"@types/react": "16.14.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"decky-frontend-lib": "^3.21.8",
"eslint": "^8.22.0",
"jest": "^29.0.3",
"lodash-es": "^4.17.21",
"mobx": "5",
"rollup": "^2.70.2",
"rollup-plugin-import-assets": "^1.1.1",
"shx": "^0.3.4",
"ts-jest": "^29.0.5",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"dependencies": {
"moment": "^2.29.4",
"prop-types": "^15.6.0",
"react-icons": "^4.4.0",
"recharts": "^2.4.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom",
"decky-frontend-lib"
]
}
}
}