-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.75 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.75 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
68
69
70
71
{
"name": "quave-timer",
"title": "Quave Timer",
"description": "A simple countdown timer with menu bar integration",
"icon": "timer.png",
"author": "filipenevola",
"categories": [
"Productivity"
],
"license": "MIT",
"commands": [
{
"name": "timer",
"title": "Quave Timer",
"description": "A simple countdown timer with menu bar integration",
"mode": "menu-bar",
"interval": "10s"
},
{
"name": "custom-time-form",
"title": "Set Custom Time",
"description": "Set a custom timer duration",
"mode": "view"
},
{
"name": "start-timer",
"title": "Start Timer",
"description": "Start the timer with default/last used time",
"mode": "view"
},
{
"name": "stop-timer",
"title": "Stop Timer",
"description": "Stop the currently running timer",
"mode": "view"
}
],
"preferences": [
{
"name": "defaultTime",
"title": "Default Timer Duration (minutes)",
"description": "Default duration for the timer in minutes",
"type": "textfield",
"default": "20",
"placeholder": "20",
"required": false
}
],
"dependencies": {
"@raycast/api": "^1.62.0",
"@raycast/utils": "^1.10.0",
"react": "^18.2.0"
},
"devDependencies": {
"@types/node": "20.8.10",
"@types/react": "18.2.27",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.6.2",
"typescript": "^5.2.2"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}