-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.35 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
56
57
58
{
"name": "@fxmacrodata/openclaw",
"version": "0.1.0",
"type": "module",
"description": "FXMacroData macroeconomic tools for OpenClaw",
"license": "Apache-2.0",
"homepage": "https://fxmacrodata.com",
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/THIRD_PARTY_LICENSES.txt",
"README.md",
"LICENSE",
"NOTICE",
"CAPABILITIES.md",
"openclaw.plugin.json",
"skills/fxmacrodata/SKILL.md"
],
"scripts": {
"build": "node scripts/build.mjs",
"typecheck": "tsc --noEmit",
"test": "tsx --test test/*.test.ts",
"prepack": "npm run build"
},
"devDependencies": {
"esbuild": "0.28.2",
"typescript": "5.9.3",
"tsx": "4.21.0",
"@types/node": "24.10.9"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"ajv": "8.17.1",
"typebox": "1.3.18"
},
"engines": {
"node": ">=24.16.0 <25 || >=26.1.0"
},
"peerDependencies": {
"openclaw": "2026.9.3"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.9.3",
"minGatewayVersion": "2026.9.3"
},
"build": {
"openclawVersion": "2026.9.3",
"pluginSdkVersion": "2026.9.3"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js"
}