simplelogin-client 0.4.1 → 0.4.4

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/README.md +4 -1
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -4,10 +4,13 @@
4
4
  <strong>Zero-dependency TypeScript client for the <a href="https://simplelogin.io">SimpleLogin.io</a> API. Compatible with NodeJS and browsers.</strong>
5
5
  </p>
6
6
  <p>
7
- <a href="https://kennethwussmann.github.io/simplelogin-client/typedoc/index.html">Documentation</a> • <a href="https://kennethwussmann.github.io/simplelogin-client/redoc/index.html">API Spec</a>
7
+ <a href="https://kennethwussmann.github.io/simplelogin-client/typedoc/index.html">Documentation</a> • <a href="https://kennethwussmann.github.io/simplelogin-client/redoc/index.html">API Spec</a> • <a href="https://github.com/KennethWussmann/simplelogin-cli">CLI Tool</a>
8
8
  </p>
9
9
  </div>
10
10
 
11
+ > [!TIP]
12
+ > No time to code? Check out the [CLI tool](https://github.com/KennethWussmann/simplelogin-cli) based on this client SDK to get started quickly!
13
+
11
14
  ## Features
12
15
 
13
16
  > Interested in the state of the project? [Check the faq!](./docs/faq.md#whats-the-current-project-state)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simplelogin-client",
3
- "version": "0.4.1",
3
+ "version": "0.4.4",
4
4
  "description": "Zero-dependency TypeScript client for the SimpleLogin.io API",
5
5
  "main": "tscBuild/index.js",
6
6
  "types": "tscBuild/index.d.ts",
@@ -13,10 +13,13 @@
13
13
  "rest",
14
14
  "simplelogin.io"
15
15
  ],
16
- "homepage": "https://github.com/KennethWussmann/simplelogin-client",
16
+ "homepage": "https://kennethwussmann.github.io/simplelogin-client/",
17
17
  "bugs": {
18
18
  "url": "https://github.com/KennethWussmann/simplelogin-client/issues"
19
19
  },
20
+ "repository": {
21
+ "url": "https://github.com/KennethWussmann/simplelogin-client"
22
+ },
20
23
  "license": "MIT",
21
24
  "scripts": {
22
25
  "dev": "npm-watch",
@@ -30,7 +33,7 @@
30
33
  "lint": "tsx scripts/index.ts lint",
31
34
  "format": "tsx scripts/index.ts format",
32
35
  "dependency-update": "tsx scripts/index.ts dependencyUpdate",
33
- "prepare": "husky install"
36
+ "prepare": "husky"
34
37
  },
35
38
  "files": [
36
39
  "README.md",