-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 KB
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
{
"name": "@voidly/cli",
"version": "0.2.0",
"description": "Command-line tool for Voidly's censorship intelligence APIs. Check if domains are blocked, run a long-running watcher, query incidents, generate citations, view shutdown forecasts, and check Voidly service health — all from your terminal.",
"bin": {
"voidly": "./dist/cli.js"
},
"type": "module",
"main": "./dist/cli.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "node dist/cli.js --help && node dist/cli.js check voidly.ai US",
"dev": "tsc --watch"
},
"keywords": [
"voidly",
"censorship",
"internet-freedom",
"cli",
"mcp",
"ooni",
"ioda",
"vpn",
"circumvention",
"intelligence",
"monitoring"
],
"author": "Voidly <hello@voidly.ai>",
"license": "MIT",
"homepage": "https://voidly.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/voidly-ai/cli.git"
},
"bugs": {
"url": "https://github.com/voidly-ai/cli/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.4.0"
},
"mcpName": "io.github.voidly-ai/cli"
}