vibecash 0.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 +642 -0
  2. package/dist/index.js +1012 -0
  3. package/package.json +45 -0
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "vibecash",
3
+ "version": "0.1.0",
4
+ "description": "AI Guardian - Payment infrastructure CLI for AI agents",
5
+ "type": "module",
6
+ "bin": {
7
+ "vibecash": "./dist/index.js"
8
+ },
9
+ "keywords": [
10
+ "payment",
11
+ "cli",
12
+ "checkout",
13
+ "subscription",
14
+ "billing",
15
+ "vibecash",
16
+ "ai-guardian"
17
+ ],
18
+ "license": "MIT",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/vibecash/vibecash-cli"
22
+ },
23
+ "engines": {
24
+ "node": ">=20.0.0"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "README.md"
29
+ ],
30
+ "scripts": {
31
+ "build": "tsup",
32
+ "dev": "tsup --watch",
33
+ "start": "tsx src/index.ts",
34
+ "prepublishOnly": "pnpm build",
35
+ "pack": "pnpm build && npm pack"
36
+ },
37
+ "dependencies": {
38
+ "commander": "^12.0.0"
39
+ },
40
+ "devDependencies": {
41
+ "tsup": "^8.0.0",
42
+ "tsx": "^4.7.0",
43
+ "typescript": "^5.3.0"
44
+ }
45
+ }