@ctx-core/security 7.0.21 → 7.0.25

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,33 @@
1
1
  # @ctx-core/security
2
2
 
3
+ ## 7.0.25
4
+
5
+ ### Patch Changes
6
+
7
+ - package.json: - "main": explicitly not support cjs
8
+
9
+ ## 7.0.24
10
+
11
+ ### Patch Changes
12
+
13
+ - update dependencies
14
+
15
+ ## 7.0.23
16
+
17
+ ### Patch Changes
18
+
19
+ - @swc/core: ^1.2.117 -> ^1.2.118
20
+ - Updated dependencies
21
+ - @ctx-core/object@21.0.29
22
+
23
+ ## 7.0.22
24
+
25
+ ### Patch Changes
26
+
27
+ - @swc/core: ^1.2.116 -> ^1.2.117
28
+ - Updated dependencies
29
+ - @ctx-core/object@21.0.28
30
+
3
31
  ## 7.0.21
4
32
 
5
33
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/security",
3
- "version": "7.0.21",
3
+ "version": "7.0.25",
4
4
  "description": "ctx-core security",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,7 +17,6 @@
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "main": "./dist/index.js",
21
20
  "module": "./dist/index.js",
22
21
  "types": "./src/index.ts",
23
22
  "exports": {
@@ -28,11 +27,11 @@
28
27
  "./package.json": "./package.json"
29
28
  },
30
29
  "dependencies": {
31
- "@ctx-core/object": "^21.0.27"
30
+ "@ctx-core/object": "^21.0.30"
32
31
  },
33
32
  "devDependencies": {
34
33
  "@swc/cli": "^0.1.52",
35
- "@swc/core": "^1.2.116",
34
+ "@swc/core": "^1.2.118",
36
35
  "typescript": "next"
37
36
  },
38
37
  "publishConfig": {
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,