-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "datadog",
"title": "Datadog",
"description": "Browse dashboards, alerts, etc. on Datadog",
"icon": "dd_icon.png",
"author": "zerowidth",
"commands": [
{
"name": "index",
"title": "Open Datadog Dashboard",
"description": "Open Datadog Dashboards",
"mode": "view"
},
{
"name": "config",
"title": "Configure Datadog Dashboard List",
"description": "Oepn the Datadog Dashboard List Config file in VSCode",
"mode": "no-view"
},
{
"name": "graph",
"title": "Insert Datadog Graph from Clipboard",
"description": "Inserts a Datadog Graph image and URL from a graph URL on the clipboard",
"mode": "no-view"
}
],
"preferences": [
{
"name": "editor",
"type": "appPicker",
"title": "Editor",
"description": "The editor app to use when opening the configuration file",
"default": "/Applications/Visual Studio Code.app"
}
],
"dependencies": {
"@raycast/api": "^1.64.5",
"cross-fetch": "^4.0.0",
"dateformat": "^5.0.3",
"node-html-parser": "^6.1.12",
"open": "^8.4.2",
"yaml": "^2.3.4"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.8",
"@types/dateformat": "^5.0.2",
"@types/node": "^20.10.7",
"@types/node-fetch": "^2.6.10",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop"
}
}