-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 901 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 901 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
38
39
40
41
{
"name": "@secapi/cli",
"version": "0.2.0",
"description": "SEC API CLI for SEC data shaped for investors and agents",
"type": "module",
"bin": {
"secapi": "dist/index.js",
"omni-sec": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun build src/index.ts --outfile dist/index.js --target node && chmod +x dist/index.js",
"test": "bun test src/index.test.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"keywords": [
"sec",
"edgar",
"filings",
"sec-api",
"financial-data",
"cli",
"agent",
"mcp"
],
"license": "MIT",
"homepage": "https://secapi.ai/developers",
"bugs": {
"url": "https://docs.secapi.ai/support"
},
"repository": {
"type": "git",
"url": "git+https://github.com/secapi-ai/secapi-cli.git"
},
"publishConfig": {
"access": "public"
}
}