herald-auth-web 0.5.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,34 @@
1
+ {
2
+ "name": "herald-auth-web",
3
+ "version": "0.5.1",
4
+ "description": "Herald official browser JavaScript SDK for third-party web integration. Framework-agnostic, zero runtime dependencies.",
5
+ "type": "module",
6
+ "types": "./dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "import": "./dist/index.js"
11
+ }
12
+ },
13
+ "unpkg": "./dist/index.global.js",
14
+ "jsdelivr": "./dist/index.global.js",
15
+ "sideEffects": false,
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "generate-api": "node scripts/generate-api.mjs",
21
+ "build": "tsup",
22
+ "type-check": "tsc --noEmit",
23
+ "test": "vitest",
24
+ "test:run": "vitest run"
25
+ },
26
+ "devDependencies": {
27
+ "@hey-api/openapi-ts": "^0.92.3",
28
+ "jsdom": "^28.1.0",
29
+ "msw": "^2.7.1",
30
+ "tsup": "^8.3.5",
31
+ "typescript": "^5.9.3",
32
+ "vitest": "^4.1.7"
33
+ }
34
+ }