-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 2.95 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
105
106
107
108
109
110
111
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "time-sheet",
"version": "2.1.0",
"title": "Time sheet",
"description": "Internal tool to Automate filling timesheet",
"icon": "icon.png",
"author": "jeet0007",
"owner": "appman",
"categories": [
"Productivity"
],
"license": "MIT",
"commands": [
{
"name": "index",
"title": "Time Sheet",
"description": "Show Today TimeSheet",
"mode": "view"
}
],
"preferences": [
{
"name": "saveDirectory",
"type": "directory",
"default": "~/Desktop",
"required": true,
"title": "Save Exports Directory",
"description": "All Exports will be saved here"
},
{
"name": "googleClientId",
"type": "textfield",
"required": false,
"title": "Google Client Id",
"description": "Used To Import Google Events from Google (Client Id of the account)"
},
{
"name": "githubToken",
"type": "password",
"required": false,
"title": "Github Token",
"description": "Used To Import Github Events from Github (Token of the account)"
},
{
"name": "googleEmail",
"type": "textfield",
"required": false,
"title": "Google Email",
"description": "Used To Import Google Events from Google (Email of the account)"
},
{
"name": "jiraEmail",
"type": "textfield",
"required": false,
"title": "Jira Email",
"description": "Used To Import Jira Events from Jira (Email of the account)"
},
{
"name": "jiraToken",
"type": "password",
"required": false,
"title": "Jira Token",
"description": "Used To Import Jira Events from Jira (Token of the account)"
},
{
"name": "exportType",
"type": "textfield",
"required": true,
"default": "json",
"title": "File type for exported files",
"description": "Used To Export Events to file (json, yaml)"
},
{
"name": "calendarFilters",
"type": "textfield",
"required": false,
"default": "LUNCH, OUT OF OFFICE",
"title": "Calendar Filters will ignore events from Calendar with these words in title",
"description": "Comma separated list of words"
}
],
"dependencies": {
"@google-cloud/local-auth": "^2.1.0",
"@raycast/api": "^1.48.9",
"@raycast/utils": "^1.5.2",
"@types/lodash": "^4.14.191",
"googleapis": "^105.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-fetch": "^3.3.1",
"octokit": "^2.0.14"
},
"devDependencies": {
"@raycast/eslint-config": "1.0.5",
"@types/js-yaml": "^4.0.5",
"@types/node": "18.8.3",
"@types/react": "18.0.9",
"eslint": "^7.32.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"
}
}