@xylabs/libauth 4.13.18 → 4.13.20

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 CHANGED
@@ -12,7 +12,7 @@
12
12
  [![snyk-badge][]][snyk-link]
13
13
  [![socket-badge][]][socket-link]
14
14
 
15
- Version: 4.13.15
15
+ Version: 4.13.19
16
16
 
17
17
  Base functionality used throughout XY Labs TypeScript/JavaScript libraries
18
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/libauth",
3
- "version": "4.13.18",
3
+ "version": "4.13.20",
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