-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.55 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "slack",
"title": "Slack",
"description": "",
"icon": "icon.png",
"author": "klassm",
"license": "MIT",
"commands": [
{
"name": "searchSlack",
"title": "Search Slack",
"description": "Search Slack channels and users",
"mode": "view"
},
{
"name": "unreadSlackConversations",
"title": "Unread Slack conversations",
"description": "Show unread slack conversations",
"mode": "view"
}
],
"preferences": [
{
"name": "tokens",
"type": "textfield",
"title": "Slack Tokens",
"required": true,
"default": "",
"description": "Slack tokens"
},
{
"name": "cookie",
"type": "textfield",
"title": "Slack Cookie",
"required": true,
"default": "",
"description": "Slack Cookie"
}
],
"dependencies": {
"@raycast/api": "^1.39.3",
"dotenv": "^16.0.2",
"lodash": "^4.17.21",
"node-fetch": "^3.2.10",
"replace-special-characters": "^1.2.6",
"usehooks-ts": "^2.6.0"
},
"devDependencies": {
"@types/lodash": "^4.14.185",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "ray publish"
}
}