@secapi/cli 1.0.1 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +52 -6
  2. package/dist/index.js +26502 -159
  3. package/package.json +12 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secapi/cli",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "description": "SEC API CLI for SEC data shaped for investors and agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,12 +11,20 @@
11
11
  "dist"
12
12
  ],
13
13
  "scripts": {
14
- "build": "bun build src/index.ts --outfile dist/index.js --target node && chmod +x dist/index.js",
14
+ "build": "bun run scripts/build.ts",
15
15
  "prepack": "bun run build",
16
- "test": "bun test src/index.test.ts",
16
+ "test": "bun test src",
17
17
  "typecheck": "tsc --noEmit",
18
18
  "prepublishOnly": "bun run build"
19
19
  },
20
+ "devDependencies": {
21
+ "@secapi/sdk-js": "^1.0.2",
22
+ "@types/node": "^24.10.1",
23
+ "@types/react": "^19.1.6",
24
+ "ink": "^6.0.0",
25
+ "react": "^19.1.0",
26
+ "typescript": "^6.0.3"
27
+ },
20
28
  "keywords": [
21
29
  "sec",
22
30
  "edgar",
@@ -39,11 +47,5 @@
39
47
  "publishConfig": {
40
48
  "access": "public"
41
49
  },
42
- "dependencies": {
43
- "@secapi/sdk-js": "^1.0.1"
44
- },
45
- "devDependencies": {
46
- "@types/node": "^24.10.1",
47
- "typescript": "^6.0.3"
48
- }
50
+ "dependencies": {}
49
51
  }