@ctx-core/jwt 10.1.1 → 10.1.2

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,11 @@
1
1
  # @ctx-core/jwt
2
2
 
3
+ ## 10.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - update dependencies
8
+
3
9
  ## 10.1.1
4
10
 
5
11
  ### Patch Changes
Binary file
package/package.json CHANGED
@@ -1,55 +1,56 @@
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.2",
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
+ "scripts": {
29
+ "build": ":",
30
+ "clean": ":",
31
+ "exec": "$@",
32
+ "prepublishOnly": "npm run clean && npm run build && npm run test",
33
+ "test": "pnpm test-unit && check-dts",
34
+ "test-unit": "tsm node_modules/uvu/bin.js . '\\.test\\.(ts|js)$'",
35
+ "test-unit-coverage": "c8 pnpm test-unit"
36
+ },
37
+ "dependencies": {
38
+ "@ctx-core/atob": "^10.0.49",
39
+ "@ctx-core/error": "^11.4.0",
40
+ "@ctx-core/function": "*",
41
+ "@swc/cli": "^0.1.55",
42
+ "@swc/core": "^1.2.147"
43
+ },
44
+ "devDependencies": {
45
+ "c8": "^7.11.0",
46
+ "check-dts": "^0.6.6",
47
+ "tsm": "^2.2.1",
48
+ "typescript": "next",
49
+ "uvu": "^0.5.3"
50
+ },
51
+ "publishConfig": {
52
+ "access": "public",
53
+ "cache": "~/.npm"
54
+ },
55
+ "sideEffects": false
56
+ }