-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.64 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "spike",
"title": "Spike",
"description": "Resolve incidents, check who is on-call, and add overrides from Raycast.",
"icon": "spike-logo.png",
"author": "damanpreet_singh",
"owner": "spike",
"access": "public",
"categories": [
"Developer Tools"
],
"contributors": [
"kaushik_from_spike_sh"
],
"license": "MIT",
"commands": [
{
"name": "incidents",
"title": "Open Incidents",
"description": "Search and discover open incidents",
"mode": "view",
"keywords": [
"triggered",
"acknowledge",
"incident",
"open"
]
},
{
"name": "oncall",
"title": "My Oncall",
"description": "Browse your on-call schedules",
"mode": "view",
"keywords": [
"oncall",
"schedule",
"on-call",
"rotation"
]
},
{
"name": "whoIsOnCall",
"title": "Who Is Oncall",
"description": "Lists every active on-call member",
"mode": "view",
"keywords": [
"oncall",
"schedule",
"on-call",
"rotation"
]
},
{
"name": "favorites",
"title": "Favorites",
"description": "Quickly access your favorites",
"mode": "view"
},
{
"name": "addOverride",
"title": "Add Oncall Override",
"description": "Add override on any on-call schedule",
"mode": "view"
},
{
"name": "openIncidents",
"title": "Open Incidents in Menu Bar",
"subtitle": "Spike",
"description": "Access open incidents from your menu bar",
"mode": "menu-bar"
}
],
"dependencies": {
"@raycast/api": "^1.83.2",
"@raycast/utils": "^1.17.0",
"axios": "^1.7.7",
"crypto-js": "^4.2.0",
"moment-timezone": "^0.5.46"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.11",
"@types/node": "20.8.10",
"@types/react": "18.3.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"typescript": "^5.4.5"
},
"scripts": {
"build": "cross-env NODE_ENV=production ray build -e dist",
"dev": "cross-env NODE_ENV=development ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"prepublishOnly": "echo \"\\n\\nIt seems like you are trying to publish the Raycast extension to npm.\\n\\nIf you did intend to publish it to npm, remove the \\`prepublishOnly\\` script and rerun \\`npm publish\\` again.\\nIf you wanted to publish it to the Raycast Store instead, use \\`npm run publish\\` instead.\\n\\n\" && exit 1",
"publish": "npx @raycast/api@latest publish"
}
}