pushnetgo-cli 1.0.4 → 1.0.5
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 +13 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# PushNetGo CLI
|
|
2
2
|
|
|
3
|
-
Command-line tool for PushNetGo App — sync music, validate API keys.
|
|
3
|
+
Command-line tool for PushNetGo App — sync music, validate API keys.
|
|
4
|
+
|
|
5
|
+
## Quickstart
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g pushnetgo-cli
|
|
9
|
+
export MYAPP_API_KEY="pushnetgo-xxx"
|
|
10
|
+
pushnetgo-cli token check
|
|
11
|
+
pushnetgo-cli api-url
|
|
12
|
+
pushnetgo-cli sync-music --url "https://..."
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
**Three commands. No Firebase config needed. Works on any machine.**
|
|
4
16
|
|
|
5
17
|
## Install
|
|
6
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pushnetgo-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "PushNetGo App CLI — HTTP API: https://us-central1-flutter-ai-playground-f8e3b.cloudfunctions.net/unifiedGatewayApi",
|
|
5
5
|
"bin": {
|
|
6
6
|
"pushnetgo-cli": "./bin/pushnetgo-cli.js"
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"scripts": {
|
|
9
9
|
"start": "node bin/pushnetgo-cli.js"
|
|
10
10
|
},
|
|
11
|
-
"keywords": ["pushnetgo", "music", "sync", "cli", "ai-agent"],
|
|
11
|
+
"keywords": ["pushnetgo", "pushnetgo-cli", "pushnetgo api", "pushnetgo upload", "music", "sync", "cli", "ai-agent"],
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|