@xylabs/libauth 5.0.94 → 5.0.96

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 +37 -56
  2. package/package.json +3 -9
package/README.md CHANGED
@@ -1,86 +1,67 @@
1
1
  # @xylabs/libauth
2
2
 
3
- [![logo][]](https://xylabs.com)
3
+ [![npm][npm-badge]][npm-link]
4
+ [![license][license-badge]][license-link]
4
5
 
5
- [![main-build][]][main-build-link]
6
- [![npm-badge][]][npm-link]
7
- [![npm-downloads-badge][]][npm-link]
8
- [![jsdelivr-badge][]][jsdelivr-link]
9
- [![npm-license-badge][]](LICENSE)
10
- [![codacy-badge][]][codacy-link]
11
- [![codeclimate-badge][]][codeclimate-link]
12
- [![snyk-badge][]][snyk-link]
13
- [![socket-badge][]][socket-link]
6
+ > Base functionality used throughout XY Labs TypeScript/JavaScript libraries
14
7
 
8
+ ## Install
15
9
 
16
- Base functionality used throughout XY Labs TypeScript/JavaScript libraries
10
+ Using npm:
17
11
 
12
+ ```sh
13
+ npm install {{name}}
14
+ ```
18
15
 
16
+ Using yarn:
19
17
 
20
- ## Reference
18
+ ```sh
19
+ yarn add {{name}}
20
+ ```
21
21
 
22
- **@xylabs/libauth**
22
+ Using pnpm:
23
23
 
24
- ***
24
+ ```sh
25
+ pnpm add {{name}}
26
+ ```
25
27
 
26
- ## Variables
28
+ Using bun:
27
29
 
28
- | Variable | Description |
29
- | ------ | ------ |
30
- | [~~libauth~~](#variables/libauth) | - |
30
+ ```sh
31
+ bun add {{name}}
32
+ ```
31
33
 
32
- ### variables
33
34
 
34
- ### <a id="libauth"></a>libauth
35
+ ## License
35
36
 
36
- [**@xylabs/libauth**](#../README)
37
+ See the [LICENSE](LICENSE) file for license rights and limitations (LGPL-3.0-only).
37
38
 
38
- ***
39
+ ## Reference
39
40
 
40
- ```ts
41
- const libauth: 1 = 1;
42
- ```
41
+ ### packages
43
42
 
44
- ## Deprecated
45
-
46
- use actual libauth instead
43
+ ### libauth
47
44
 
45
+ ### .temp-typedoc
48
46
 
49
- Part of [sdk-js](https://www.npmjs.com/package/@xyo-network/sdk-js)
47
+ ### variables
50
48
 
51
- ## Maintainers
49
+ ### <a id="libauth"></a>libauth
52
50
 
53
- - [Arie Trouw](https://github.com/arietrouw) ([arietrouw.com](https://arietrouw.com))
54
- - [Matt Jones](https://github.com/jonesmac)
55
- - [Joel Carter](https://github.com/JoelBCarter)
56
- - [Jordan Trouw](https://github.com/jordantrouw)
51
+ [**@xylabs/libauth**](#../README)
57
52
 
58
- ## License
53
+ ***
59
54
 
60
- > See the [LICENSE](LICENSE) file for license details
55
+ ```ts
56
+ const libauth: 1 = 1;
57
+ ```
61
58
 
62
- ## Credits
59
+ ## Deprecated
63
60
 
64
- [Made with 🔥 and ❄️ by XYLabs](https://xylabs.com)
61
+ use actual libauth instead
65
62
 
66
- [logo]: https://cdn.xy.company/img/brand/XYPersistentCompany_Logo_Icon_Colored.svg
67
63
 
68
- [main-build]: https://github.com/xylabs/sdk-js/actions/workflows/build.yml/badge.svg
69
- [main-build-link]: https://github.com/xylabs/sdk-js/actions/workflows/build.yml
70
64
  [npm-badge]: https://img.shields.io/npm/v/@xylabs/libauth.svg
71
65
  [npm-link]: https://www.npmjs.com/package/@xylabs/libauth
72
- [codacy-badge]: https://app.codacy.com/project/badge/Grade/c8e15e14f37741c18cfb47ac7245c698
73
- [codacy-link]: https://www.codacy.com/gh/xylabs/sdk-js/dashboard?utm_source=github.com&utm_medium=referral&utm_content=xylabs/sdk-js&utm_campaign=Badge_Grade
74
- [codeclimate-badge]: https://api.codeclimate.com/v1/badges/c5eb068f806f0b047ea7/maintainability
75
- [codeclimate-link]: https://codeclimate.com/github/xylabs/sdk-js/maintainability
76
- [snyk-badge]: https://snyk.io/test/github/xylabs/sdk-js/badge.svg?targetFile=package.json
77
- [snyk-link]: https://snyk.io/test/github/xylabs/sdk-js?targetFile=package.json
78
-
79
- [npm-downloads-badge]: https://img.shields.io/npm/dw/@xylabs/libauth
80
- [npm-license-badge]: https://img.shields.io/npm/l/@xylabs/libauth
81
-
82
- [jsdelivr-badge]: https://data.jsdelivr.com/v1/package/npm/@xylabs/libauth/badge
83
- [jsdelivr-link]: https://www.jsdelivr.com/package/npm/@xylabs/libauth
84
-
85
- [socket-badge]: https://socket.dev/api/badge/npm/package/@xylabs/libauth
86
- [socket-link]: https://socket.dev/npm/package/@xylabs/libauth
66
+ [license-badge]: https://img.shields.io/npm/l/@xylabs/libauth.svg
67
+ [license-link]: https://github.com/xylabs/sdk-js/blob/main/LICENSE
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/libauth",
3
- "version": "5.0.94",
3
+ "version": "5.0.96",
4
4
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
5
5
  "keywords": [
6
6
  "libauth",
@@ -29,12 +29,10 @@
29
29
  "exports": {
30
30
  ".": {
31
31
  "types": "./dist/neutral/index.d.ts",
32
- "import": "./dist/neutral/index.mjs",
33
32
  "default": "./dist/neutral/index.mjs"
34
33
  },
35
34
  "./package.json": "./package.json"
36
35
  },
37
- "types": "./dist/neutral/index.d.ts",
38
36
  "files": [
39
37
  "dist",
40
38
  "!**/*.bench.*",
@@ -43,12 +41,8 @@
43
41
  "README.md"
44
42
  ],
45
43
  "devDependencies": {
46
- "@types/node": "^25.5.2",
47
- "@xylabs/ts-scripts-common": "~7.7.3",
48
- "@xylabs/ts-scripts-pnpm": "~7.7.3",
49
- "@xylabs/tsconfig": "~7.7.3",
50
- "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0",
51
- "esbuild": "^0.28.0",
44
+ "@xylabs/toolchain": "~7.10.4",
45
+ "@xylabs/tsconfig": "~7.10.4",
52
46
  "typescript": "^5"
53
47
  },
54
48
  "engines": {