@nominalso/vibe-host 0.0.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,80 @@
1
+ {
2
+ "name": "@nominalso/vibe-host",
3
+ "version": "0.0.1",
4
+ "description": "Host-side SDK for embedding Nominal Vibe Apps — receives bridge requests over a typed postMessage protocol and dispatches them to Nominal APIs (used by nom-ui).",
5
+ "license": "UNLICENSED",
6
+ "keywords": [
7
+ "nominal",
8
+ "vibe-apps",
9
+ "vibe-app",
10
+ "sdk",
11
+ "iframe",
12
+ "postmessage",
13
+ "host",
14
+ "embed"
15
+ ],
16
+ "homepage": "https://github.com/nominalso/vibe-apps-sdk#readme",
17
+ "bugs": {
18
+ "url": "https://github.com/nominalso/vibe-apps-sdk/issues"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "github:nominalso/vibe-apps-sdk",
23
+ "directory": "packages/host"
24
+ },
25
+ "type": "module",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "import": "./dist/index.js",
30
+ "require": "./dist/index.cjs"
31
+ }
32
+ },
33
+ "main": "./dist/index.cjs",
34
+ "module": "./dist/index.js",
35
+ "types": "./dist/index.d.ts",
36
+ "files": [
37
+ "dist"
38
+ ],
39
+ "publishConfig": {
40
+ "registry": "https://registry.npmjs.org/",
41
+ "access": "public"
42
+ },
43
+ "dependencies": {
44
+ "@hey-api/client-fetch": "^0.9.0"
45
+ },
46
+ "devDependencies": {
47
+ "@nominalso/vibe-api-client": "0.0.1",
48
+ "@nominalso/vibe-api-types": "0.0.1",
49
+ "@nominalso/vibe-protocol-types": "0.0.1"
50
+ },
51
+ "tsup": {
52
+ "entry": [
53
+ "src/index.ts"
54
+ ],
55
+ "format": [
56
+ "cjs",
57
+ "esm"
58
+ ],
59
+ "noExternal": [
60
+ "@nominalso/vibe-protocol-types",
61
+ "@nominalso/vibe-api-types",
62
+ "@nominalso/vibe-api-client"
63
+ ],
64
+ "dts": {
65
+ "resolve": [
66
+ "@nominalso/vibe-protocol-types",
67
+ "@nominalso/vibe-api-types",
68
+ "@nominalso/vibe-api-client"
69
+ ]
70
+ },
71
+ "clean": true
72
+ },
73
+ "scripts": {
74
+ "clean": "rm -rf dist node_modules",
75
+ "build": "tsup",
76
+ "lint": "eslint src",
77
+ "typecheck": "tsc --noEmit",
78
+ "test": "vitest run"
79
+ }
80
+ }