forked from decktools-xyz/simple-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
executable file
·52 lines (52 loc) · 1.32 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
{
"name": "decky-interval-timer",
"version": "1.0.4",
"description": "Create an interval timer that reminds you every 5 mins of time passing.",
"type": "module",
"scripts": {
"build": "rollup -c && mkdir -p dist && cp ./assets/alarm.mp3 ./dist/",
"watch": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1",
"bumpversion": "bash scripts/bumpversion.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zazer0/decky-simpletimer.git"
},
"keywords": [
"decky",
"plugin",
"plugin-simple-timer",
"steam-deck",
"deck"
],
"author": "Zac Saber <zazer.unsw@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/zazer0/decky-simpletimer/issues"
},
"homepage": "https://github.com/zazer0/decky-simpletimer#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",
"rollup": "^4.53.3",
"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"
]
}
}
}