@ctx-core/jwt 10.0.35 → 10.0.39

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,41 @@
1
1
  # @ctx-core/jwt
2
2
 
3
+ ## 10.0.39
4
+
5
+ ### Patch Changes
6
+
7
+ - package.json: svelte: ./dist/index.js
8
+ - Updated dependencies
9
+ - @ctx-core/atob@10.0.33
10
+ - @ctx-core/error@11.1.10
11
+ - @ctx-core/function@20.2.13
12
+
13
+ ## 10.0.38
14
+
15
+ ### Patch Changes
16
+
17
+ - package.json: - module
18
+ - Updated dependencies
19
+ - @ctx-core/atob@10.0.32
20
+ - @ctx-core/error@11.1.9
21
+
22
+ ## 10.0.37
23
+
24
+ ### Patch Changes
25
+
26
+ - package.json: - "main": explicitly not support cjs
27
+ - Updated dependencies
28
+ - @ctx-core/atob@10.0.31
29
+ - @ctx-core/error@11.1.8
30
+
31
+ ## 10.0.36
32
+
33
+ ### Patch Changes
34
+
35
+ - update dependencies
36
+ - Updated dependencies
37
+ - @ctx-core/error@11.1.7
38
+
3
39
  ## 10.0.35
4
40
 
5
41
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/jwt",
3
- "version": "10.0.35",
3
+ "version": "10.0.39",
4
4
  "description": "ctx-core jwt",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,33 +17,32 @@
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "main": "./dist/index.js",
21
- "module": "./dist/index.js",
22
- "types": "./src/index.ts",
23
20
  "exports": {
24
21
  ".": {
25
- "require": "./dist/index.cjs",
22
+ "types": "./src/index.ts",
26
23
  "import": "./dist/index.js"
27
24
  },
28
25
  "./package.json": "./package.json"
29
26
  },
30
27
  "dependencies": {
31
- "@ctx-core/atob": "^10.0.30",
32
- "@ctx-core/error": "^11.1.6",
33
- "@ctx-core/function": "^20.2.10",
34
- "@swc/cli": "^0.1.52",
35
- "@swc/core": "^1.2.118"
28
+ "@ctx-core/atob": "^10.0.33",
29
+ "@ctx-core/error": "^11.1.10",
30
+ "@ctx-core/function": "^20.2.13",
31
+ "@swc/cli": "^0.1.55",
32
+ "@swc/core": "^1.2.120"
36
33
  },
37
34
  "devDependencies": {
35
+ "rimraf": "^3.0.2",
38
36
  "typescript": "next"
39
37
  },
40
38
  "publishConfig": {
41
39
  "access": "public",
42
40
  "cache": "~/.npm"
43
41
  },
42
+ "svelte": "./dist/index.js",
44
43
  "scripts": {
45
44
  "build": "npm run compile",
46
- "clean": "rm -rf dist",
45
+ "clean": "rimraf dist",
47
46
  "compile": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
48
47
  "exec": "$@"
49
48
  }
package/tsconfig.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "compileOnSave": true,
3
3
  "compilerOptions": {
4
- "target": "ES2019",
4
+ "target": "ES2020",
5
5
  "composite": true,
6
6
  "declaration": true,
7
7
  "sourceMap": true,