@openmobilehub/attestomcp-storefront 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,69 @@
1
+ {
2
+ "name": "@openmobilehub/attestomcp-storefront",
3
+ "version": "0.1.0",
4
+ "description": "The agentic storefront core — the cart/pricing/order model for an MCP shopping app, catalog-injected (own-the-code). Pairs with @openmobilehub/attestomcp-gate.",
5
+ "license": "Apache-2.0",
6
+ "author": "Open Mobile Hub (Linux Foundation)",
7
+ "homepage": "https://github.com/openmobilehub/mcp-apps-shopping-demo/tree/main/packages/attestomcp-storefront#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/openmobilehub/mcp-apps-shopping-demo.git",
11
+ "directory": "packages/attestomcp-storefront"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/openmobilehub/mcp-apps-shopping-demo/issues"
15
+ },
16
+ "type": "module",
17
+ "sideEffects": false,
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "default": "./dist/index.js"
22
+ },
23
+ "./server": {
24
+ "types": "./dist/server.d.ts",
25
+ "default": "./dist/server.js"
26
+ }
27
+ },
28
+ "main": "./dist/index.js",
29
+ "types": "./dist/index.d.ts",
30
+ "engines": {
31
+ "node": ">=20"
32
+ },
33
+ "files": [
34
+ "dist",
35
+ "dist/ui",
36
+ "README.md",
37
+ "LICENSE"
38
+ ],
39
+ "scripts": {
40
+ "build": "vite build --config vite.config.ui.ts && tsc -p tsconfig.json",
41
+ "test": "vitest run"
42
+ },
43
+ "dependencies": {
44
+ "@modelcontextprotocol/ext-apps": "^1.0.0",
45
+ "@modelcontextprotocol/sdk": "^1.29.0",
46
+ "@openmobilehub/attestomcp-gate": "^0.1.0",
47
+ "express": "^5.1.0",
48
+ "zod": "^4.1.13"
49
+ },
50
+ "devDependencies": {
51
+ "@types/react": "^19.2.2",
52
+ "@types/react-dom": "^19.2.2",
53
+ "@vitejs/plugin-react": "^4.3.4",
54
+ "react": "^19.2.0",
55
+ "react-dom": "^19.2.0",
56
+ "vite": "^6.0.0",
57
+ "vite-plugin-singlefile": "^2.3.0"
58
+ },
59
+ "keywords": [
60
+ "mcp",
61
+ "agent",
62
+ "storefront",
63
+ "agentic-commerce",
64
+ "shopping"
65
+ ],
66
+ "publishConfig": {
67
+ "access": "public"
68
+ }
69
+ }