-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 861 Bytes
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
{
"name": "@fxmacrodata/anythingllm",
"version": "0.1.0",
"type": "commonjs",
"description": "FXMacroData macroeconomic tools for AnythingLLM",
"license": "Apache-2.0",
"homepage": "https://fxmacrodata.com",
"files": [
"handler.js",
"plugin.json",
"README.md",
"LICENSE",
"NOTICE",
"CAPABILITIES.md",
"THIRD_PARTY_LICENSES.txt",
"HUB_FILES.json"
],
"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"
},
"engines": {
"node": ">=20.19.0"
}
}