-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.84 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
{
"name": "decky-quick-tab",
"version": "0.1.0",
"display_name": "Quick Tab",
"description": "Experimental: adds a dedicated icon for your own plugins directly in Steam's Quick Access Menu, instead of going through Decky's own plugin list.",
"type": "module",
"scripts": {
"version": "node -e \"const fs=require('fs');const p='./plugin.json';const o=JSON.parse(fs.readFileSync(p));o.version=process.env.npm_package_version;fs.writeFileSync(p,JSON.stringify(o,null,2)+'\\n');\" && git add plugin.json",
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1",
"fix:prettier": "prettier --config .prettierrc --write ./src",
"check:prettier": "prettier ./src --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moi952/decky-quick-tab.git"
},
"keywords": [
"decky",
"plugin",
"steam-deck",
"deck",
"quick-access-menu"
],
"author": "moi952",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/moi952/decky-quick-tab/issues"
},
"homepage": "https://github.com/moi952/decky-quick-tab#readme",
"devDependencies": {
"@decky/rollup": "^1.0.2",
"@decky/ui": "^4.11.1",
"@rollup/rollup-linux-x64-musl": "^4.53.3",
"@types/react": "19.1.1",
"@types/react-dom": "19.1.1",
"@types/webpack": "^5.28.5",
"prettier": "^3.8.1",
"rollup": "^4.53.3",
"typescript": "^5.6.2"
},
"dependencies": {
"@decky/api": "^1.1.3",
"@moi952/decky-plugin-toolkit": "github:moi952/decky-plugin-toolkit#v0.1.0&path:frontend",
"@moi952/decky-ui-kit": "^0.5.0",
"i18next": "^25.8.13",
"react-i18next": "^16.5.4",
"react-icons": "^5.3.0",
"tslib": "^2.7.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-dom"
]
}
}
}