@ctx-core/jwt 10.1.1 → 10.1.4

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,30 @@
1
1
  # @ctx-core/jwt
2
2
 
3
+ ## 10.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - package.json: exports: update
8
+ - Updated dependencies
9
+ - Updated dependencies
10
+ - @ctx-core/atob@10.0.51
11
+ - @ctx-core/error@11.4.2
12
+ - @ctx-core/function@20.6.1
13
+
14
+ ## 10.1.3
15
+
16
+ ### Patch Changes
17
+
18
+ - update dependencies
19
+ - Updated dependencies
20
+ - @ctx-core/atob@10.0.50
21
+
22
+ ## 10.1.2
23
+
24
+ ### Patch Changes
25
+
26
+ - update dependencies
27
+
3
28
  ## 10.1.1
4
29
 
5
30
  ### Patch Changes
Binary file
package/package.json CHANGED
@@ -1,55 +1,54 @@
1
1
  {
2
- "name": "@ctx-core/jwt",
3
- "version": "10.1.1",
4
- "description": "ctx-core jwt",
5
- "keywords": [
6
- "ctx-core",
7
- "jwt"
8
- ],
9
- "homepage": "https://github.com/ctx-core/jwt#readme",
10
- "bugs": {
11
- "url": "https://github.com/ctx-core/jwt/issues"
12
- },
13
- "repository": {
14
- "type": "git",
15
- "url": "https://github.com/ctx-core/jwt.git"
16
- },
17
- "license": "Apache-2.0",
18
- "author": "Brian Takita",
19
- "type": "module",
20
- "types": "./src/index.d.ts",
21
- "svelte": "./src/index.js",
22
- "exports": {
23
- ".": {
24
- "import": "./src/index.js"
25
- },
26
- "./package.json": "./package.json"
27
- },
28
- "dependencies": {
29
- "@ctx-core/atob": "^10.0.47",
30
- "@ctx-core/error": "^11.3.1",
31
- "@ctx-core/function": "20.4.0",
32
- "@swc/cli": "^0.1.55",
33
- "@swc/core": "^1.2.138"
34
- },
35
- "devDependencies": {
36
- "c8": "^7.11.0",
37
- "check-dts": "^0.6.6",
38
- "tsm": "^2.2.1",
39
- "typescript": "next",
40
- "uvu": "^0.5.3"
41
- },
42
- "publishConfig": {
43
- "access": "public",
44
- "cache": "~/.npm"
45
- },
46
- "sideEffects": false,
47
- "scripts": {
48
- "build": ":",
49
- "clean": ":",
50
- "exec": "$@",
51
- "test": "pnpm test-unit && check-dts",
52
- "test-unit": "tsm node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
53
- "test-unit-coverage": "c8 pnpm test-unit"
54
- }
55
- }
2
+ "name": "@ctx-core/jwt",
3
+ "version": "10.1.4",
4
+ "description": "ctx-core jwt",
5
+ "keywords": [
6
+ "ctx-core",
7
+ "jwt"
8
+ ],
9
+ "homepage": "https://github.com/ctx-core/jwt#readme",
10
+ "bugs": {
11
+ "url": "https://github.com/ctx-core/jwt/issues"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/ctx-core/jwt.git"
16
+ },
17
+ "license": "Apache-2.0",
18
+ "author": "Brian Takita",
19
+ "type": "module",
20
+ "types": "./src/index.d.ts",
21
+ "svelte": "./src/index.js",
22
+ "exports": {
23
+ ".": "./src/index.js",
24
+ "./package.json": "./package.json"
25
+ },
26
+ "scripts": {
27
+ "build": ":",
28
+ "clean": ":",
29
+ "exec": "$@",
30
+ "prepublishOnly": "npm run clean && npm run build && npm run test",
31
+ "test": "pnpm test-unit && check-dts",
32
+ "test-unit": "tsm node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
33
+ "test-unit-coverage": "c8 pnpm test-unit"
34
+ },
35
+ "dependencies": {
36
+ "@ctx-core/atob": "workspace:^10.0.51",
37
+ "@ctx-core/error": "workspace:^11.4.2",
38
+ "@ctx-core/function": "workspace:^20.6.1",
39
+ "@swc/cli": "^0.1.57",
40
+ "@swc/core": "^1.2.165"
41
+ },
42
+ "devDependencies": {
43
+ "c8": "^7.11.0",
44
+ "check-dts": "^0.6.6",
45
+ "tsm": "^2.2.1",
46
+ "typescript": "next",
47
+ "uvu": "^0.5.3"
48
+ },
49
+ "publishConfig": {
50
+ "access": "public",
51
+ "cache": "~/.npm"
52
+ },
53
+ "sideEffects": false
54
+ }