caprover-api 0.0.2 → 0.0.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 +3 -5
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -2,15 +2,13 @@ https://github.com/caprover/caprover-api
|
|
|
2
2
|
|
|
3
3
|
# Official CapRover API SDK (TypeScript)
|
|
4
4
|
|
|
5
|
-
A simple, typed
|
|
5
|
+
A simple, typed Typescript SDK for the CapRover API.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
|
+
```
|
|
9
10
|
npm install caprover-api
|
|
10
|
-
|
|
11
|
-
csharp
|
|
12
|
-
Copy
|
|
13
|
-
Edit
|
|
11
|
+
```
|
|
14
12
|
|
|
15
13
|
## Usage
|
|
16
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "caprover-api",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "API client for CapRover",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
"dev": "rm -rf ./dist && npx tsc && node ./dist/example.js",
|
|
15
15
|
"generate-barrels": "barrelsby --directory src/models"
|
|
16
16
|
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"caprover",
|
|
19
|
+
"api"
|
|
20
|
+
],
|
|
17
21
|
"repository": {
|
|
18
22
|
"type": "git",
|
|
19
23
|
"url": "https://github.com/caprover/caprover-api.git"
|