@ovixa/auth-client 0.1.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,78 @@
1
+ {
2
+ "name": "@ovixa/auth-client",
3
+ "version": "0.1.0",
4
+ "description": "Client SDK for Ovixa Auth service",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
+ },
14
+ "./astro": {
15
+ "types": "./dist/middleware/astro.d.ts",
16
+ "import": "./dist/middleware/astro.js"
17
+ },
18
+ "./express": {
19
+ "types": "./dist/middleware/express.d.ts",
20
+ "import": "./dist/middleware/express.js"
21
+ }
22
+ },
23
+ "files": [
24
+ "dist",
25
+ "README.md",
26
+ "LICENSE",
27
+ "CHANGELOG.md"
28
+ ],
29
+ "dependencies": {
30
+ "jose": "^6.1.3"
31
+ },
32
+ "devDependencies": {
33
+ "@vitest/coverage-istanbul": "^3.1.0",
34
+ "tsup": "^8.0.0",
35
+ "vitest": "^3.1.0"
36
+ },
37
+ "peerDependencies": {
38
+ "astro": ">=4.0.0",
39
+ "express": ">=4.0.0"
40
+ },
41
+ "peerDependenciesMeta": {
42
+ "astro": {
43
+ "optional": true
44
+ },
45
+ "express": {
46
+ "optional": true
47
+ }
48
+ },
49
+ "keywords": [
50
+ "ovixa",
51
+ "auth",
52
+ "authentication",
53
+ "sdk",
54
+ "jwt",
55
+ "middleware",
56
+ "astro",
57
+ "express"
58
+ ],
59
+ "license": "MIT",
60
+ "repository": {
61
+ "type": "git",
62
+ "url": "https://github.com/ovixa/platform.git",
63
+ "directory": "packages/auth-client"
64
+ },
65
+ "publishConfig": {
66
+ "access": "public"
67
+ },
68
+ "scripts": {
69
+ "build": "tsup",
70
+ "dev": "tsup --watch",
71
+ "test": "vitest run",
72
+ "test:coverage": "vitest run --coverage",
73
+ "test:watch": "vitest",
74
+ "lint": "eslint src/",
75
+ "typecheck": "tsc --noEmit",
76
+ "clean": "rm -rf dist"
77
+ }
78
+ }