-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 2.81 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "ipcheck-ing",
"title": "IPCheck",
"description": "Show All Your IPs, from Local Network and Multiple Sources",
"icon": "ipchecking.png",
"author": "jason5ng32",
"categories": [
"Developer Tools"
],
"license": "MIT",
"preferences": [
{
"type": "checkbox",
"name": "getLocalIPs",
"title": "Local IPs",
"description": "Get Local IPs",
"label": "Get Local IPs",
"default": true,
"required": false
},
{
"type": "checkbox",
"name": "getIPFromCloudflare_V4",
"title": "External IP Sources to Fetch",
"description": "Fetch IP from CloudFlare IPv4",
"label": "CloudFlare IPv4",
"default": true,
"required": false
},
{
"type": "checkbox",
"name": "getIPFromCloudflare_V6",
"description": "Fetch IP from CloudFlare IPv6",
"label": "CloudFlare IPv6",
"default": true,
"required": false
},
{
"type": "checkbox",
"name": "getIPFromIPCheck4",
"description": "Fetch IP from IPCheck.ing IPv4",
"label": "IPCheck.ing IPv4",
"default": true,
"required": false
},
{
"type": "checkbox",
"name": "getIPFromIPCheck6",
"description": "Fetch IP from IPCheck.ing IPv6",
"label": "IPCheck.ing IPv6",
"default": true,
"required": false
},
{
"type": "checkbox",
"name": "getIPFromIPCheck64",
"description": "Fetch IP from IPCheck.ing DualStack",
"label": "IPCheck.ing DualStack",
"default": true,
"required": false
},
{
"type": "checkbox",
"name": "getIPFromIPIP",
"description": "Fetch IP from IPIP.net",
"label": "IPIP.net",
"default": true,
"required": false
}
],
"commands": [
{
"name": "main",
"title": "Show My IPs",
"subtitle": "IPCheck",
"description": "Show All My IPs",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.87.5",
"@raycast/utils": "^1.17.0"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.11",
"@types/node": "20.8.10",
"@types/node-fetch": "^2.6.12",
"@types/react": "18.3.3",
"eslint": "^8.57.0",
"prettier": "^3.4.2",
"typescript": "^5.4.5"
},
"scripts": {
"build": "ray build",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"prepublishOnly": "echo \"\\n\\nIt seems like you are trying to publish the Raycast extension to npm.\\n\\nIf you did intend to publish it to npm, remove the \\`prepublishOnly\\` script and rerun \\`npm publish\\` again.\\nIf you wanted to publish it to the Raycast Store instead, use \\`npm run publish\\` instead.\\n\\n\" && exit 1",
"publish": "npx @raycast/api@latest publish"
}
}