-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 2.67 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
112
113
114
115
116
117
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "putio",
"title": "put.io",
"description": "Raycast extension for managing files, transfers, and history events in your put.io account.",
"icon": "putio.png",
"owner": "putio",
"access": "public",
"author": "altaywtf",
"categories": [
"Applications",
"Media"
],
"license": "MIT",
"commands": [
{
"name": "files",
"title": "View Your Files",
"description": "View your files in put.io",
"mode": "view",
"keywords": [
"putio",
"files"
]
},
{
"name": "search-files",
"title": "Search in put.io",
"description": "Search among your files in put.io",
"mode": "view",
"keywords": [
"putio",
"files",
"search"
],
"arguments": [
{
"name": "query",
"required": false,
"type": "text",
"placeholder": "big buck bunny"
}
]
},
{
"name": "new-transfer",
"title": "New Transfer",
"description": "Add new transfer to put.io",
"mode": "view",
"keywords": [
"putio",
"transfer",
"new"
],
"arguments": [
{
"name": "links",
"required": false,
"type": "text",
"placeholder": "magnet:?xt=urn:btih..."
}
]
},
{
"name": "transfers",
"title": "View Transfers",
"description": "View your transfers in put.io",
"mode": "view",
"keywords": [
"putio",
"files"
]
},
{
"name": "history",
"title": "View History",
"description": "View your history in put.io",
"mode": "view",
"keywords": [
"putio",
"history"
]
}
],
"preferences": [
{
"name": "token",
"title": "App-specific password",
"type": "password",
"placeholder": "Get this from put.io/raycast",
"description": "App-specific password used for authenticating with put.io API.",
"required": true
}
],
"dependencies": {
"@putdotio/api-client": "^8.49.0",
"@putdotio/utilities": "^1.17.0",
"@raycast/api": "^1.83.1",
"@raycast/utils": "^1.17.0"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.11",
"@types/node": "20.8.10",
"@types/react": "18.3.3",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"typescript": "^5.4.5"
},
"scripts": {
"build": "ray build --skip-types -e dist -o dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
},
"version": "1.0.0"
}