-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.2 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.2 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
{
"name": "@fiale-plus/fred-cli",
"version": "0.0.0-dev",
"description": "Unofficial CLI and TypeScript client for the FRED API (Federal Reserve Economic Data) — designed for AI agents",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"fred": "dist/cli.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "tsx --test src/tests/*.test.ts",
"test:watch": "tsx --test --watch src/tests/*.test.ts",
"test:integration": "tsx --test src/tests/integration.test.ts",
"prepublishOnly": "npm run build && npm test",
"prepare": "npm run build"
},
"keywords": [
"fred",
"fred-api",
"federal-reserve",
"economic-data",
"cli",
"typescript",
"financial-data",
"macroeconomics",
"ai-agents",
"gdp",
"inflation",
"interest-rates"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fiale-plus/fred-cli.git"
},
"author": "fiale-plus",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.19",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}