@nuria-tech/auth-sdk 1.0.0

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 ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@nuria-tech/auth-sdk",
3
+ "version": "1.0.0",
4
+ "description": "Browser OAuth 2.0 Authorization Code + PKCE client SDK — redirect-only, no password flows",
5
+ "license": "MIT",
6
+ "author": "Nuria Tech",
7
+ "keywords": [
8
+ "auth",
9
+ "oauth2",
10
+ "pkce",
11
+ "oidc",
12
+ "authentication",
13
+ "sdk"
14
+ ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/nuria-tech/nuria-auth-sdk.git"
18
+ },
19
+ "engines": {
20
+ "node": ">=20"
21
+ },
22
+ "type": "module",
23
+ "main": "dist/index.cjs",
24
+ "module": "dist/index.js",
25
+ "types": "dist/index.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "import": "./dist/index.js",
30
+ "require": "./dist/index.cjs"
31
+ },
32
+ "./package.json": "./package.json"
33
+ },
34
+ "files": [
35
+ "dist"
36
+ ],
37
+ "sideEffects": false,
38
+ "devDependencies": {
39
+ "@typescript-eslint/eslint-plugin": "8.56.1",
40
+ "@typescript-eslint/parser": "8.56.1",
41
+ "@vitest/coverage-v8": "4.0.18",
42
+ "eslint": "10.0.2",
43
+ "eslint-config-prettier": "10.1.8",
44
+ "eslint-plugin-prettier": "5.5.5",
45
+ "happy-dom": "20.7.0",
46
+ "prettier": "3.8.1",
47
+ "tsup": "8.5.1",
48
+ "typescript": "5.9.3",
49
+ "vitest": "4.0.18"
50
+ },
51
+ "scripts": {
52
+ "build": "tsup",
53
+ "test": "vitest run",
54
+ "test:coverage": "vitest run --coverage",
55
+ "test:watch": "vitest",
56
+ "lint": "eslint src/**/*.ts",
57
+ "lint:fix": "eslint src/**/*.ts --fix",
58
+ "format": "prettier --write src/**/*.ts",
59
+ "typecheck": "tsc --noEmit"
60
+ }
61
+ }