@seamless-auth/core 0.5.0 → 0.5.1-beta.20260523220556
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/package.json +52 -53
package/package.json
CHANGED
|
@@ -1,56 +1,55 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
"name": "@seamless-auth/core",
|
|
3
|
+
"version": "0.5.1-beta.20260523220556",
|
|
4
|
+
"description": "Framework-agnostic core authentication logic for SeamlessAuth",
|
|
5
|
+
"license": "AGPL-3.0-only",
|
|
6
|
+
"author": "Fells Code, LLC",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"homepage": "https://seamlessauth.com",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/fells-code/seamless-auth-server/tree/main/packages/core"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "./dist/index.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/index.js"
|
|
12
20
|
},
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"exports": {
|
|
17
|
-
".": {
|
|
18
|
-
"types": "./dist/index.d.ts",
|
|
19
|
-
"import": "./dist/index.js"
|
|
20
|
-
},
|
|
21
|
-
"./handlers/*": {
|
|
22
|
-
"types": "./dist/handlers/*.d.ts",
|
|
23
|
-
"import": "./dist/handlers/*.js"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"files": [
|
|
27
|
-
"dist",
|
|
28
|
-
"LICENSE",
|
|
29
|
-
"LICENSE.md",
|
|
30
|
-
"README.md"
|
|
31
|
-
],
|
|
32
|
-
"engines": {
|
|
33
|
-
"node": ">=18"
|
|
34
|
-
},
|
|
35
|
-
"scripts": {
|
|
36
|
-
"build": "tsc -p tsconfig.json",
|
|
37
|
-
"clean": "rm -rf dist",
|
|
38
|
-
"prepublishOnly": "npm run clean && npm run build",
|
|
39
|
-
"test": "npm run build && NODE_OPTIONS=--experimental-vm-modules jest",
|
|
40
|
-
"test:watch": "npm run build && NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
41
|
-
},
|
|
42
|
-
"dependencies": {
|
|
43
|
-
"jose": "^6.1.3",
|
|
44
|
-
"jsonwebtoken": "^9.0.2"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@types/jest": "^29.5.14",
|
|
48
|
-
"@types/jsonwebtoken": "^9.0.10",
|
|
49
|
-
"jest": "^29.7.0",
|
|
50
|
-
"ts-node": "^10.9.2",
|
|
51
|
-
"typescript": "^5.9.3"
|
|
52
|
-
},
|
|
53
|
-
"publishConfig": {
|
|
54
|
-
"access": "public"
|
|
21
|
+
"./handlers/*": {
|
|
22
|
+
"types": "./dist/handlers/*.d.ts",
|
|
23
|
+
"import": "./dist/handlers/*.js"
|
|
55
24
|
}
|
|
56
|
-
}
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"LICENSE",
|
|
29
|
+
"LICENSE.md",
|
|
30
|
+
"README.md"
|
|
31
|
+
],
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=18"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"jose": "^6.1.3",
|
|
37
|
+
"jsonwebtoken": "^9.0.2"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@types/jest": "^29.5.14",
|
|
41
|
+
"@types/jsonwebtoken": "^9.0.10",
|
|
42
|
+
"jest": "^29.7.0",
|
|
43
|
+
"ts-node": "^10.9.2",
|
|
44
|
+
"typescript": "^5.9.3"
|
|
45
|
+
},
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"access": "public"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "tsc -p tsconfig.json",
|
|
51
|
+
"clean": "rm -rf dist",
|
|
52
|
+
"test": "pnpm run build && NODE_OPTIONS=--experimental-vm-modules jest",
|
|
53
|
+
"test:watch": "pnpm run build && NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
54
|
+
}
|
|
55
|
+
}
|