forked from koala73/worldmonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.13 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
{
"name": "worldmonitor",
"version": "0.1.3",
"description": "Command-line client for the World Monitor global-intelligence API — script country briefs, risk scores, conflict/cyber/market feeds, and MCP tools without writing an API integration.",
"keywords": [
"worldmonitor",
"cli",
"osint",
"geopolitics",
"intelligence",
"api-client",
"mcp",
"agent"
],
"homepage": "https://worldmonitor.app/docs/cli",
"bugs": "https://github.com/koala73/worldmonitor/issues",
"license": "MIT",
"author": "World Monitor",
"repository": {
"type": "git",
"url": "git+https://github.com/koala73/worldmonitor.git",
"directory": "cli"
},
"type": "module",
"bin": {
"worldmonitor": "bin/worldmonitor.mjs",
"wm": "bin/worldmonitor.mjs"
},
"exports": {
".": "./src/core.mjs",
"./run": "./src/run.mjs"
},
"main": "./src/core.mjs",
"files": [
"bin/",
"src/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"test": "node --test 'test/**/*.test.mjs'"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}