-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 3.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "proxyman",
"title": "Proxyman",
"description": "Navigate and perform common actions in Proxyman faster",
"icon": "proxyman-icon.png",
"author": "noah_tran",
"access": "public",
"owner": "Proxyman",
"categories": [
"Developer Tools",
"Applications"
],
"keywords": [
"Proxyman",
"Proxy",
"HTTP",
"HTTPS",
"System Proxy",
"Debugging",
"Tools"
],
"contributors": [
"NghiaTranUIT"
],
"license": "MIT",
"commands": [
{
"name": "toggle-system-proxy",
"title": "Toggle System Proxy",
"subtitle": "Proxyman",
"description": "Toggle HTTP/HTTPS System Proxy. Same logic with Tools -> Proxy Setting -> Override macOS System",
"mode": "no-view"
},
{
"name": "toggle-map-local-tool",
"title": "Toggle Map Local",
"subtitle": "Proxyman",
"description": "Toggle the Map Local in Proxyman",
"mode": "no-view"
},
{
"name": "toggle-breakpoint",
"title": "Toggle Breakpoint",
"subtitle": "Proxyman",
"description": "Toggle the Breakpoint feature in Proxyman",
"mode": "no-view"
},
{
"name": "toggle-blocklist",
"title": "Toggle Blocklist",
"subtitle": "Proxyman",
"description": "Toggle the Blocklist feature in Proxyman",
"mode": "no-view"
},
{
"name": "toggle-allowlist",
"title": "Toggle Allowlist",
"subtitle": "Proxyman",
"description": "Toggle the Allowlist feature in Proxyman",
"mode": "no-view"
},
{
"name": "toggle-map-remote",
"title": "Toggle Map Remote",
"subtitle": "Proxyman",
"description": "Toggle the Map Remote feature in Proxyman",
"mode": "no-view"
},
{
"name": "toggle-scripting",
"title": "Toggle Scripting",
"subtitle": "Proxyman",
"description": "Toggle the Scripting feature in Proxyman",
"mode": "no-view"
},
{
"name": "toggle-external-proxy",
"title": "Toggle External Proxy",
"subtitle": "Proxyman",
"description": "Toggle the External Proxy feature in Proxyman",
"mode": "no-view"
},
{
"name": "toggle-socks-proxy",
"title": "Toggle SOCKS Proxy",
"subtitle": "Proxyman",
"description": "Toggle the SOCKS Proxy feature in Proxyman",
"mode": "no-view"
},
{
"name": "toggle-network-condition",
"title": "Toggle Network Condition",
"subtitle": "Proxyman",
"description": "Toggle the Network Condition feature in Proxyman",
"mode": "no-view"
},
{
"name": "toggle-ssl-proxying-list",
"title": "Toggle SSL Proxying List",
"subtitle": "Proxyman",
"description": "Toggle the SSL Proxying List feature in Proxyman",
"mode": "no-view"
},
{
"name": "toggle-record-traffic",
"title": "Toggle Record Traffic",
"subtitle": "Proxyman",
"description": "Toggle the Record Traffic feature in Proxyman",
"mode": "no-view"
},
{
"name": "clear-session",
"title": "Clear Session",
"subtitle": "Proxyman",
"description": "Clear the current session in Proxyman",
"mode": "no-view"
}
],
"dependencies": {
"@raycast/api": "^1.69.0"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.6",
"@types/node": "20.8.10",
"@types/react": "18.2.27",
"eslint": "^8.51.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}