-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.81 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "shopgraph",
"version": "1.0.1",
"description": "Product data structuring layer for AI agents. REST API + MCP server. Per-field confidence scoring and UCP-compatible output from any URL.",
"type": "module",
"main": "dist/client.js",
"types": "dist/client.d.ts",
"exports": {
".": {
"import": "./dist/client.js",
"types": "./dist/client.d.ts"
},
"./server": {
"import": "./dist/index.js"
}
},
"files": [
"dist/client.js",
"dist/client.d.ts",
"dist/types.js",
"dist/types.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:http": "node dist/http-server.js",
"dev": "tsx src/index.ts",
"dev:http": "tsx src/http-server.ts",
"test": "vitest",
"test:run": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"shopgraph",
"product-data",
"mcp",
"mcp-server",
"agent-commerce",
"ecommerce",
"structured-data",
"schema-org",
"web-scraping",
"stripe-mpp",
"ai-agents"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/laundromatic/shopgraph.git"
},
"homepage": "https://shopgraph.dev",
"mcpName": "io.github.laundromatic/shopgraph",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@modelcontextprotocol/sdk": "^1.8.0",
"@sparticuz/chromium": "^143.0.4",
"@upstash/redis": "^1.37.0",
"dotenv": "^16.4.7",
"express": "^5.2.1",
"node-cache": "^5.1.2",
"playwright-core": "^1.58.2",
"stripe": "^17.5.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.12.0",
"@vercel/node": "^5.6.18",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}