local-first-auth-simulator 1.4.1

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,51 @@
1
+ {
2
+ "name": "local-first-auth-simulator",
3
+ "version": "1.4.1",
4
+ "description": "Development tool for testing Local First Auth mini-apps. Injects window.localFirstAuth into a regular browser to help you test Local First Auth host apps while in development environments.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist",
10
+ "examples"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
14
+ "build:bundle": "tsup --config tsup.bundle.config.ts",
15
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
16
+ "type-check": "tsc --noEmit",
17
+ "prepublishOnly": "npm run build"
18
+ },
19
+ "keywords": [
20
+ "local-first-auth",
21
+ "qr-code",
22
+ "webview",
23
+ "simulator",
24
+ "dev-tools",
25
+ "local-first",
26
+ "did",
27
+ "decentralized-identity",
28
+ "web3",
29
+ "mini-apps"
30
+ ],
31
+ "author": "Daniel Mathews",
32
+ "license": "MIT",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/antler-browser/local-first-auth-simulator"
36
+ },
37
+ "dependencies": {
38
+ "@stablelib/ed25519": "^1.0.3",
39
+ "base58-universal": "^2.0.0",
40
+ "base64-js": "^1.5.1"
41
+ },
42
+ "devDependencies": {
43
+ "@types/base64-js": "^1.3.2",
44
+ "@types/node": "^20.0.0",
45
+ "tsup": "^8.0.0",
46
+ "typescript": "^5.0.0"
47
+ },
48
+ "engines": {
49
+ "node": ">=20.0.0"
50
+ }
51
+ }