@ctx-core/jwt 10.1.0 → 10.1.3
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 +20 -0
- package/ctx-core-jwt-10.1.3.tgz +0 -0
- package/package.json +55 -54
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @ctx-core/jwt
|
|
2
2
|
|
|
3
|
+
## 10.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- update dependencies
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @ctx-core/atob@10.0.50
|
|
10
|
+
|
|
11
|
+
## 10.1.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- update dependencies
|
|
16
|
+
|
|
17
|
+
## 10.1.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- fix: package.json: lib=>src
|
|
22
|
+
|
|
3
23
|
## 10.1.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,55 +1,56 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
2
|
+
"name": "@ctx-core/jwt",
|
|
3
|
+
"version": "10.1.3",
|
|
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.50",
|
|
39
|
+
"@ctx-core/error": "^11.4.1",
|
|
40
|
+
"@ctx-core/function": "^20.6.0",
|
|
41
|
+
"@swc/cli": "^0.1.56",
|
|
42
|
+
"@swc/core": "^1.2.160"
|
|
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
|
+
}
|