sharetribe-cli 1.16.2 → 1.16.3
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 +5 -3
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# Sharetribe CLI
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
> **DISCLAIMER**: This is an UNOFFICIAL community-maintained CLI reimplementation.
|
|
4
|
+
> For the official Sharetribe CLI, install [flex-cli](https://www.npmjs.com/package/flex-cli).
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
A command-line interface for [Sharetribe](https://www.sharetribe.com/) that enables you to manage the transaction processes, transactional email templates, assets, and other resources of your marketplaces.
|
|
7
|
+
|
|
8
|
+
This CLI is a reimplementation built on [`sharetribe-flex-build-sdk`](https://www.npmjs.com/package/sharetribe-flex-build-sdk) and is designed to be 100% compatible with the official `flex-cli`, using the same command structure and configuration files.
|
|
7
9
|
|
|
8
10
|
To use Sharetribe CLI, you will need a marketplace and an admin user API key. You can create a Sharetribe marketplace from
|
|
9
11
|
[www.sharetribe.com/](https://www.sharetribe.com/) and get credentials to Console where you can generate new API keys in [your account's "Manage API keys"](https://console.sharetribe.com/api-keys).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sharetribe-cli",
|
|
3
|
-
"version": "1.16.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.16.3",
|
|
4
|
+
"description": "UNOFFICIAL Sharetribe CLI reimplementation built on sharetribe-flex-build-sdk - 100% compatible with official flex-cli",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
21
21
|
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
22
22
|
"typecheck": "tsc --noEmit",
|
|
23
|
+
"postinstall": "echo '\n⚠️ NOTICE: This is an UNOFFICIAL Sharetribe CLI (community reimplementation).\n For the official CLI, install: npm install -g flex-cli\n'",
|
|
23
24
|
"prepublishOnly": "npm run build"
|
|
24
25
|
},
|
|
25
26
|
"keywords": [
|
|
@@ -27,7 +28,9 @@
|
|
|
27
28
|
"flex",
|
|
28
29
|
"cli",
|
|
29
30
|
"marketplace",
|
|
30
|
-
"transaction-process"
|
|
31
|
+
"transaction-process",
|
|
32
|
+
"unofficial",
|
|
33
|
+
"community"
|
|
31
34
|
],
|
|
32
35
|
"author": "",
|
|
33
36
|
"license": "Apache-2.0",
|