@xylabs/libauth 4.13.19 → 4.13.21

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 (3) hide show
  1. package/README.md +25 -3
  2. package/package.json +8 -5
  3. package/xy.config.ts +0 -31
package/README.md CHANGED
@@ -12,13 +12,35 @@
12
12
  [![snyk-badge][]][snyk-link]
13
13
  [![socket-badge][]][socket-link]
14
14
 
15
- Version: 4.13.15
16
15
 
17
16
  Base functionality used throughout XY Labs TypeScript/JavaScript libraries
18
17
 
19
- ## Documentation
18
+ ## API Documentation
19
+
20
+ **@xylabs/libauth**
21
+
22
+ ***
23
+
24
+ ## Variables
25
+
26
+ - [~~libauth~~](#variables/libauth)
27
+
28
+ ### variables
29
+
30
+ ### <a id="libauth"></a>libauth
31
+
32
+ [**@xylabs/libauth**](#../README)
33
+
34
+ ***
35
+
36
+ ```ts
37
+ const libauth: 1 = 1;
38
+ ```
39
+
40
+ ## Deprecated
41
+
42
+ use actual libauth instead
20
43
 
21
- Coming Soon!
22
44
 
23
45
  Part of [sdk-js](https://www.npmjs.com/package/@xyo-network/sdk-js)
24
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/libauth",
3
- "version": "4.13.19",
3
+ "version": "4.13.21",
4
4
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
5
5
  "keywords": [
6
6
  "libauth",
@@ -29,18 +29,21 @@
29
29
  "exports": {
30
30
  ".": {
31
31
  "types": "./dist/neutral/index.d.ts",
32
+ "source": "./src/index.ts",
32
33
  "default": "./dist/neutral/index.mjs"
33
34
  },
34
35
  "./package.json": "./package.json"
35
36
  },
36
37
  "module": "./dist/neutral/index.mjs",
38
+ "source": "./src/index.ts",
37
39
  "types": "./dist/neutral/index.d.ts",
38
- "workspaces": [
39
- "packages/**/*"
40
+ "files": [
41
+ "dist",
42
+ "src"
40
43
  ],
41
44
  "devDependencies": {
42
- "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.27",
43
- "@xylabs/tsconfig": "^7.0.0-rc.27",
45
+ "@xylabs/ts-scripts-yarn3": "^7.0.0",
46
+ "@xylabs/tsconfig": "^7.0.0",
44
47
  "typescript": "^5.8.3"
45
48
  },
46
49
  "engines": {
package/xy.config.ts DELETED
@@ -1,31 +0,0 @@
1
- import type { XyTsupConfig } from '@xylabs/ts-scripts-yarn3'
2
- const config: XyTsupConfig = {
3
- compile: {
4
- browser: {
5
- src: {
6
- esbuildOptions: (options) => {
7
- options.minifyWhitespace = true
8
- options.keepNames = true
9
- options.sourcemap = false
10
- return options
11
- },
12
- noExternal: ['@bitauth/libauth'],
13
- sourcemap: false,
14
- },
15
- },
16
- node: {
17
- src: {
18
- esbuildOptions: (options) => {
19
- options.minifyWhitespace = true
20
- options.keepNames = true
21
- options.sourcemap = false
22
- return options
23
- },
24
- noExternal: ['@bitauth/libauth'],
25
- sourcemap: false,
26
- },
27
- },
28
- },
29
- }
30
-
31
- export default config