@ursalock/client 0.2.2

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,62 @@
1
+ {
2
+ "name": "@ursalock/client",
3
+ "version": "0.2.2",
4
+ "description": "Auth and API client for ursalock with E2EE passkey encryption",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup src/index.ts --format esm --dts",
20
+ "test": "vitest run",
21
+ "test:watch": "vitest",
22
+ "typecheck": "tsc --noEmit"
23
+ },
24
+ "dependencies": {
25
+ "@z-base/zero-knowledge-credentials": "^1.0.2"
26
+ },
27
+ "peerDependencies": {
28
+ "react": ">=18.0.0"
29
+ },
30
+ "peerDependenciesMeta": {
31
+ "react": {
32
+ "optional": true
33
+ }
34
+ },
35
+ "devDependencies": {
36
+ "@types/react": "^19.2.13",
37
+ "react": "^18.3.1",
38
+ "tsup": "^8.0.0",
39
+ "typescript": "^5.4.0",
40
+ "vitest": "^1.6.0"
41
+ },
42
+ "keywords": [
43
+ "auth",
44
+ "passkeys",
45
+ "webauthn",
46
+ "prf",
47
+ "e2ee",
48
+ "zero-knowledge",
49
+ "ursalock"
50
+ ],
51
+ "license": "MIT",
52
+ "author": "Nicolas de Luz <ndlz@pm.me>",
53
+ "homepage": "https://github.com/nicodlz/ursalock#readme",
54
+ "bugs": {
55
+ "url": "https://github.com/nicodlz/ursalock/issues"
56
+ },
57
+ "repository": {
58
+ "type": "git",
59
+ "url": "https://github.com/nicodlz/ursalock.git",
60
+ "directory": "packages/client"
61
+ }
62
+ }