-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.35 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": "deta-community",
"title": "Teletype",
"description": "Use Deta Space Teletype directly from Raycast",
"icon": "icon.png",
"author": "SlumberDemon",
"license": "MIT",
"preferences": [
{
"name": "spaceToken",
"type": "password",
"title": "Access Token",
"description": "Your deta space access token",
"required": true
}
],
"commands": [
{
"name": "search-discovery",
"title": "Search Discovery",
"description": "Search for apps in discovery",
"mode": "view"
},
{
"name": "search-canvas",
"title": "Search Canvas",
"description": "Open your Space Canvas",
"mode": "view",
"preferences": [
{
"name": "iconSize",
"type": "dropdown",
"title": "Icon Size",
"description": "The size of canvas icons",
"required": false,
"default": "medium",
"data": [
{
"title": "Small",
"value": "small"
},
{
"title": "Medium",
"value": "medium"
},
{
"title": "Large",
"value": "large"
}
]
}
]
},
{
"name": "search-projects",
"title": "Search Projects",
"description": "Search your builder projects",
"mode": "view"
},
{
"name": "search-collections",
"title": "Search Collections",
"description": "Search for collections",
"mode": "view"
},
{
"name": "search-docs",
"title": "Search Docs",
"description": "Search for documentation",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.48.4",
"@raycast/utils": "^1.4.18",
"deta-space-client": "1.0.14"
},
"devDependencies": {
"@types/node": "18.8.3",
"@types/react": "18.0.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.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",
"space-client": "space-client"
}
}