-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.77 KB
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
{
"name": "xone-decky-plugin",
"version": "0.3.0",
"description": "Decky Loader plugin to manage xone and xpad-noone drivers on Steam Deck",
"type": "module",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"package": "node ../decky-plugin-builder/src/index.js plugin build . --remote http://192.168.1.15:3000",
"crop-screenshots": "node scripts/crop-screenshots.js",
"version": "node scripts/sync-version.js",
"lint": "ts-standard \"**/*.{js,ts,tsx}\" && black . --check",
"format": "ts-standard --fix \"**/*.{js,ts,tsx}\" && black .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SavageCore/xone-decky-plugin.git"
},
"keywords": [
"decky",
"plugin",
"steam-deck",
"xbox",
"xone",
"controller"
],
"author": "SavageCore",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/SavageCore/xone-decky-plugin/issues"
},
"homepage": "https://github.com/SavageCore/xone-decky-plugin#readme",
"devDependencies": {
"@decky/rollup": "^1.0.2",
"@decky/ui": "^4.11.1",
"@rollup/rollup-linux-x64-musl": "^4.59.0",
"@types/archiver": "^7.0.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/webpack": "^5.28.5",
"archiver": "^7.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"rollup": "^4.59.0",
"sharp": "^0.34.5",
"ts-standard": "^12.0.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@decky/api": "^1.1.3",
"react-icons": "^5.3.0",
"tslib": "^2.7.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
}
},
"lint-staged": {
"**/*.{js,ts,tsx}": "ts-standard --fix",
"**/*.py": "black"
}
}