-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.53 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "jira-search-self-hosted",
"title": "Jira Search (Self-Hosted)",
"description": "Search for Jira issues (more tolerant and powerful than built-in), projects, and boards on Jira Server instances.",
"icon": "command-icon.png",
"author": "emanguy",
"contributors": [
"sven",
"koseduhemak",
"ryanp",
"LunaticMuch",
"nick318",
"marinsokol",
"Xav1erSue"
],
"license": "MIT",
"commands": [
{
"name": "issue",
"title": "Search Issues",
"subtitle": "Jira Search (Self-Hosted)",
"description": "Search Jira issues by text, type and project",
"mode": "view"
},
{
"name": "open-issues",
"title": "Open Issues",
"subtitle": "Jira Search (Self-Hosted)",
"description": "Search Jira issues assinged to current user by text, type and project",
"mode": "view"
},
{
"name": "board",
"title": "Search Boards",
"subtitle": "Jira Search (Self-Hosted)",
"description": "Search Jira boards by title",
"mode": "view"
},
{
"name": "project",
"title": "Search Projects",
"subtitle": "Jira Search (Self-Hosted)",
"description": "Search Jira projects by title",
"mode": "view"
}
],
"preferences": [
{
"name": "baseURL",
"type": "textfield",
"required": true,
"title": "Jira BaseURL",
"description": "你的 Jira BaseURL",
"placeholder": "http://localhost:8080"
},
{
"name": "username",
"type": "textfield",
"required": true,
"title": "用户名",
"description": "你的 Jira 用户名",
"placeholder": "请输入用户名"
},
{
"name": "password",
"type": "password",
"required": true,
"title": "密码",
"description": "你的 Jira 密码",
"placeholder": "请输入密码"
}
],
"dependencies": {
"@raycast/api": "^1.81.2",
"@raycast/utils": "^1.16.3",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.8",
"@types/node": "20.8.10",
"@types/react": "18.3.3",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"typescript": "^5.4.5",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint-config-prettier": "^9.0.0"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"lint": "ray lint",
"fix-lint": "ray lint --fix",
"publish": "node publish.mjs"
}
}