-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 KB
/
package.json
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
{
"name": "@ilittlebig/easy-auth",
"description": "A simple, no-fuss authentication library using AWS SDK with SRP-based login. Designed to make AWS Cognito integration straightforward and secure.",
"version": "0.0.9",
"author": "Elias Sjödin",
"license": "ISC",
"type": "module",
"main": "dist/easy-auth.cjs.js",
"module": "dist/easy-auth.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/easy-auth.cjs.js",
"import": "./dist/easy-auth.es.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "vite build",
"test": "vitest run --coverage"
},
"devDependencies": {
"@types/node": "^22.7.9",
"@vitest/coverage-v8": "^2.1.5",
"typescript": "^5.5.3",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.5"
},
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.670.0",
"@types/js-cookie": "^3.0.6",
"js-cookie": "^3.0.5",
"sjcl-aws": "^1.0.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilittlebig/easy-auth.git"
},
"keywords": [
"javascript",
"aws",
"library",
"typescript",
"cognito"
],
"files": [
"dist",
"README.md"
],
"bugs": {
"url": "https://github.com/ilittlebig/easy-auth/issues"
},
"homepage": "https://github.com/ilittlebig/easy-auth#readme"
}