@ctx-core/jwt 10.0.37 → 10.0.41

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/CHANGELOG.md CHANGED
@@ -1,5 +1,44 @@
1
1
  # @ctx-core/jwt
2
2
 
3
+ ## 10.0.41
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: tsconfig.json: "rootDir": "."
8
+ - Updated dependencies
9
+ - @ctx-core/atob@10.0.35
10
+ - @ctx-core/error@11.1.12
11
+ - @ctx-core/function@20.2.15
12
+
13
+ ## 10.0.40
14
+
15
+ ### Patch Changes
16
+
17
+ - fix: package.json: exports
18
+ - Updated dependencies
19
+ - @ctx-core/atob@10.0.34
20
+ - @ctx-core/error@11.1.11
21
+ - @ctx-core/function@20.2.14
22
+
23
+ ## 10.0.39
24
+
25
+ ### Patch Changes
26
+
27
+ - package.json: svelte: ./dist/index.js
28
+ - Updated dependencies
29
+ - @ctx-core/atob@10.0.33
30
+ - @ctx-core/error@11.1.10
31
+ - @ctx-core/function@20.2.13
32
+
33
+ ## 10.0.38
34
+
35
+ ### Patch Changes
36
+
37
+ - package.json: - module
38
+ - Updated dependencies
39
+ - @ctx-core/atob@10.0.32
40
+ - @ctx-core/error@11.1.9
41
+
3
42
  ## 10.0.37
4
43
 
5
44
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/jwt",
3
- "version": "10.0.37",
3
+ "version": "10.0.41",
4
4
  "description": "ctx-core jwt",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -12,37 +12,37 @@
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/ctx-core/jwt/issues"
15
+ "url": "https://github.com/ctx-core/jwt.git"
16
16
  },
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "module": "./dist/index.js",
21
- "types": "./src/index.ts",
22
20
  "exports": {
23
21
  ".": {
24
- "require": "./dist/index.cjs",
25
- "import": "./dist/index.js"
22
+ "import": "./dist/index.js",
23
+ "types": "./src/index.ts"
26
24
  },
27
25
  "./package.json": "./package.json"
28
26
  },
29
27
  "dependencies": {
30
- "@ctx-core/atob": "^10.0.31",
31
- "@ctx-core/error": "^11.1.8",
32
- "@ctx-core/function": "^20.2.12",
33
- "@swc/cli": "^0.1.52",
34
- "@swc/core": "^1.2.118"
28
+ "@ctx-core/atob": "^10.0.35",
29
+ "@ctx-core/error": "^11.1.12",
30
+ "@ctx-core/function": "^20.2.15",
31
+ "@swc/cli": "^0.1.55",
32
+ "@swc/core": "^1.2.120"
35
33
  },
36
34
  "devDependencies": {
35
+ "rimraf": "^3.0.2",
37
36
  "typescript": "next"
38
37
  },
39
38
  "publishConfig": {
40
39
  "access": "public",
41
40
  "cache": "~/.npm"
42
41
  },
42
+ "svelte": "./dist/index.js",
43
43
  "scripts": {
44
44
  "build": "npm run compile",
45
- "clean": "rm -rf dist",
45
+ "clean": "rimraf dist",
46
46
  "compile": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
47
47
  "exec": "$@"
48
48
  }
package/tsconfig.json CHANGED
@@ -22,7 +22,7 @@
22
22
  "node_modules/@types"
23
23
  ],
24
24
  "baseUrl": ".",
25
- "rootDir": "src",
25
+ "rootDir": ".",
26
26
  "outDir": "dist",
27
27
  "mapRoot": "",
28
28
  "declarationDir": "dist",