checkclaw 0.0.1

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.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # checkclaw
2
+
3
+ CLI tool for querying financial data via Plaid API.
4
+
5
+ > Work in progress
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log('checkclaw v0.0.1 — coming soon');
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "checkclaw",
3
+ "version": "0.0.1",
4
+ "description": "CLI tool for querying financial data via Plaid API",
5
+ "keywords": ["cli", "plaid", "finance", "banking", "transactions"],
6
+ "bin": {
7
+ "checkclaw": "./bin/checkclaw.js"
8
+ },
9
+ "main": "dist/index.js",
10
+ "type": "module",
11
+ "license": "MIT",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": ""
15
+ },
16
+ "engines": {
17
+ "node": ">=18"
18
+ }
19
+ }