tuitio-client
parent
4b4fa37bf3
commit
e2b00e99d8
|
@ -1,15 +1,15 @@
|
||||||
# Tuitio connector
|
# Tuitio client
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
Tuitio connector is an npm package written in typescript that facilitates the integration of a react application with [Tuitio](https://lab.code-rove.com/gitea/tudor.stanciu/tuitio).
|
Tuitio client is an npm package written in typescript that facilitates the integration of a react application with [Tuitio](https://lab.code-rove.com/gitea/tudor.stanciu/tuitio).
|
||||||
|
|
||||||
## Package installation
|
## Package installation
|
||||||
|
|
||||||
The package installation can be done in two ways:
|
The package installation can be done in two ways:
|
||||||
|
|
||||||
- from the command line: `npm install @flare/tuitio-connector@1.0.0`
|
- from the command line: `npm install @flare/tuitio-client@1.0.0`
|
||||||
- from the package.json file: `"@flare/tuitio-connector": "1.0.0"`
|
- from the package.json file: `"@flare/tuitio-client": "1.0.0"`
|
||||||
|
|
||||||
## How to use the package
|
## How to use the package
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "@flare/tuitio-connector",
|
"name": "@flare/tuitio-client",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@flare/tuitio-connector",
|
"name": "@flare/tuitio-client",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
12
package.json
12
package.json
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@flare/tuitio-connector",
|
"name": "@flare/tuitio-client",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "Tuitio connector",
|
"description": "Tuitio client",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"types": "./lib/index.d.ts",
|
"types": "./lib/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -23,11 +23,11 @@
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://lab.code-rove.com/gitea/bricks/tuitio-connector.git"
|
"url": "https://lab.code-rove.com/gitea/bricks/tuitio-client.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"flare",
|
"flare",
|
||||||
"tuitio-connector"
|
"tuitio-client"
|
||||||
],
|
],
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Tudor Stanciu",
|
"name": "Tudor Stanciu",
|
||||||
|
@ -36,9 +36,9 @@
|
||||||
},
|
},
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://lab.code-rove.com/gitea/bricks/tuitio-connector/issues"
|
"url": "https://lab.code-rove.com/gitea/bricks/tuitio-client/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://lab.code-rove.com/gitea/bricks/tuitio-connector#readme",
|
"homepage": "https://lab.code-rove.com/gitea/bricks/tuitio-client#readme",
|
||||||
"files": [
|
"files": [
|
||||||
"lib/**/*"
|
"lib/**/*"
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue