forked from mblode/raycast-quick-event
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "quick-event",
"title": "Quick Event",
"version": "1.0.0",
"description": "Create a calendar event using natural language",
"icon": "command-icon.png",
"author": "mblode",
"license": "MIT",
"commands": [
{
"name": "index",
"title": "Create Quick Event",
"subtitle": "Calendar",
"description": "Create a new event in your calendar",
"mode": "view"
}
],
"preferences": [
{
"name": "calendars",
"type": "textfield",
"required": true,
"title": "Your calendars",
"description": "Specify your calendar or multiple calendars (comma separated)",
"placeholder": "calendar1,calendar2,..."
}
],
"dependencies": {
"@raycast/api": "^1.25.0",
"date-fns": "^2.28.0",
"dayjs": "^1.10.7",
"osascript-tag": "^0.1.2",
"sherlockjs": "^1.4.2"
},
"devDependencies": {
"@types/lodash.groupby": "^4.6.6",
"@types/lodash.map": "^4.6.13",
"@types/node": "~16.10.0",
"@types/react": "^17.0.28",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"react-devtools": "^4.20.0",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint"
}
}