openpodcast 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 (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +17 -0
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("OpenPodcast CLI - Coming Soon. Visit https://openpodcast.com");
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "openpodcast",
3
+ "version": "0.0.1",
4
+ "description": "OpenPodcast CLI - Coming Soon",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "openpodcast": "./index.js"
8
+ },
9
+ "keywords": ["podcast", "cli", "openpodcast"],
10
+ "author": "OpenPodcast",
11
+ "license": "MIT",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/open-podcast/openpodcast"
15
+ },
16
+ "homepage": "https://openpodcast.com"
17
+ }