-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.63 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
99
100
101
102
103
104
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "jira",
"title": "Jira",
"description": "Create, access, and modify issues and sprints.",
"icon": "icon.png",
"author": "thomaslombart",
"owner": "amosglenn",
"contributors": [
"FezVrasta",
"amos_glenn"
],
"categories": [
"Productivity"
],
"access": "private",
"license": "MIT",
"commands": [
{
"name": "create-issue",
"title": "Create Issue",
"subtitle": "Jira",
"description": "Create and assign new issues.",
"mode": "view"
},
{
"name": "open-issues",
"title": "Open Issues",
"subtitle": "Jira",
"description": "View and modify open issues that are assigned to you.",
"mode": "view"
},
{
"name": "reported-issues",
"title": "Reported Issues",
"subtitle": "Jira",
"description": "View and modify issues that were reported by you.",
"mode": "view"
},
{
"name": "watched-issues",
"title": "Watched Issues",
"subtitle": "Jira",
"description": "View and modify issues that you are watching.",
"mode": "view"
},
{
"name": "active-sprints",
"title": "Active Sprints",
"subtitle": "Jira",
"description": "View and modify issues of active sprints.",
"mode": "view"
},
{
"name": "my-filters",
"title": "My Filters",
"subtitle": "Jira",
"description": "View and modify issues of your saved filters.",
"mode": "view"
},
{
"name": "recently-updated-issues",
"title": "Recently Updated Issues",
"subtitle": "Jira",
"description": "View and modify issues that have recently been updated.",
"mode": "view"
},
{
"name": "search-issues",
"title": "Search Issues",
"subtitle": "Jira",
"description": "Search issues globally in all projects.",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.50.0",
"@raycast/utils": "^1.5.2",
"date-fns": "^2.29.3",
"filesize": "^10.0.6",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"md-to-adf": "^0.6.4",
"node-fetch": "^3.3.0",
"node-html-markdown": "^1.3.0"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.5",
"@types/lodash": "^4.14.191",
"@types/node": "18.8.3",
"@types/react": "18.0.9",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.5.1",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "ray publish"
}
}