-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.98 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "github-shorthand",
"title": "GitHub Shorthand",
"description": "Quick access and search for a configured set of repositories using shorthand references for users and repositories.",
"icon": "command-icon.png",
"author": "zerowidth",
"categories": ["Productivity", "Developer Tools"],
"license": "MIT",
"commands": [
{
"name": "issue-search",
"title": "GitHub Shorthand Issue Search",
"description": "Search or open GitHub issues with shorthand",
"subtitle": "Search repositories and issues with shorthand",
"mode": "view"
},
{
"name": "configure",
"title": "Configure GitHub Shorthand",
"subtitle": "Open the GitHub Shorthand configuration file",
"description": "Open the configuration YAML file in your editor",
"mode": "no-view"
}
],
"preferences": [
{
"name": "githubApiKey",
"title": "GitHub API Key",
"description": "Your GitHub API key",
"type": "password",
"required": true
},
{
"name": "editor",
"type": "appPicker",
"title": "Editor",
"description": "The editor app to use when opening the configuration file",
"default": "/Applications/Visual Studio Code.app",
"required": false
}
],
"dependencies": {
"@octokit/graphql": "^8.1.1",
"@raycast/api": "^1.74.1",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2",
"open": "8.4.2"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.8",
"@types/js-yaml": "^4.0.9",
"@types/node": "20.12.12",
"@types/react": "18.3.2",
"eslint": "^9.2.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"@primer/octicons": "^19.9.0",
"cheerio": "^1.0.0-rc.12",
"sharp": "^0.33.4"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}