-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.5 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.5 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@clawpify/skills",
"version": "1.1.0",
"description": "Shopify Agent SDK — query and manage Shopify stores via GraphQL Admin API with AI agents and MCP",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./src/index.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./agent": {
"types": "./dist/agent.d.ts",
"bun": "./src/agent.ts",
"import": "./dist/agent.js",
"default": "./dist/agent.js"
},
"./client": {
"types": "./dist/shopify.d.ts",
"bun": "./src/shopify.ts",
"import": "./dist/shopify.js",
"default": "./dist/shopify.js"
},
"./auth": {
"types": "./dist/auth.d.ts",
"bun": "./src/auth.ts",
"import": "./dist/auth.js",
"default": "./dist/auth.js"
},
"./skills": {
"types": "./dist/skills.d.ts",
"bun": "./src/skills.ts",
"import": "./dist/skills.js",
"default": "./dist/skills.js"
},
"./memory": {
"types": "./dist/memory.d.ts",
"bun": "./src/memory.ts",
"import": "./dist/memory.js",
"default": "./dist/memory.js"
}
},
"bin": {
"clawpify": "dist/mcp-server.js"
},
"files": [
"dist",
"src",
"clawpify"
],
"scripts": {
"build": "rm -rf dist && bun build ./src/index.ts ./src/agent.ts ./src/shopify.ts ./src/auth.ts ./src/skills.ts ./src/memory.ts ./src/mcp-server.ts --outdir ./dist --target node --format esm --external @anthropic-ai/sdk --external @modelcontextprotocol/sdk && tsc -p tsconfig.build.json",
"prepublishOnly": "bun run build",
"start": "bun run examples/server.ts"
},
"keywords": [
"shopify",
"ai",
"mcp",
"graphql",
"agent",
"sdk",
"claude",
"anthropic",
"model-context-protocol"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/clawpify/skills.git"
},
"homepage": "https://github.com/clawpify/skills#readme",
"bugs": {
"url": "https://github.com/clawpify/skills/issues"
},
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0"
},
"peerDependencies": {
"@anthropic-ai/sdk": ">=0.39.0"
},
"peerDependenciesMeta": {
"@anthropic-ai/sdk": {
"optional": true
}
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"bun-types": "latest",
"typescript": "^5.0.0"
}
}