pdfx-cli 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.
Files changed (3) hide show
  1. package/README.md +10 -0
  2. package/index.js +4 -0
  3. package/package.json +17 -0
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # pdfx-cli
2
+
3
+ shadcn/ui model for React PDF generation.
4
+
5
+ > This package is being migrated here from @akii09/pdfx-cli.
6
+ > Full release coming soon.
7
+
8
+ ## Links
9
+ - Docs: https://pdfx.akashpise.dev
10
+ - GitHub: https://github.com/akii09/pdfx
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ console.log("PDFx CLI — shadcn/ui model for React PDF generation")
3
+ console.log("Install the full CLI: npx @akii09/pdfx-cli init")
4
+ console.log("Docs: https://pdfx.akashpise.dev")
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "pdfx-cli",
3
+ "version": "0.0.1",
4
+ "description": "The PDF component library React was missing. shadcn/ui model for React PDF generation.",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "pdfx": "./index.js"
8
+ },
9
+ "keywords": ["pdf", "react", "shadcn", "pdfx", "react-pdf"],
10
+ "author": "Akash Pise",
11
+ "license": "MIT",
12
+ "homepage": "https://pdfx.akashpise.dev",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/akii09/pdfx"
16
+ }
17
+ }