-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.29 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
{
"name": "@automatalabs/use-mcp",
"repository": "https://github.com/automata-labs-team/use-mcp",
"version": "0.0.2",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"require": "./dist/react/index.js",
"import": "./dist/react/index.js"
}
},
"scripts": {
"install:all": "concurrently 'pnpm install' 'cd examples/chat-ui && pnpm install' 'cd examples/inspector && pnpm install' 'cd examples/servers/hono-mcp && pnpm install' 'cd examples/servers/cf-agents && pnpm install'",
"dev": "concurrently 'bun run build:watch' 'cd examples/chat-ui && pnpm dev' 'cd examples/inspector && pnpm dev' 'sleep 1 && cd examples/servers/hono-mcp && pnpm dev' 'sleep 2 && cd examples/servers/cf-agents && pnpm dev'",
"deploy:all": "concurrently 'bun run build:site && bun run deploy:site' 'cd examples/chat-ui && pnpm run deploy' 'cd examples/inspector && pnpm run deploy'",
"build": "bun run build:bundle && bun run build:types",
"build:bundle": "bun build ./src/index.ts ./src/react/index.ts --outdir ./dist --format esm --external react --external @modelcontextprotocol/sdk",
"build:watch": "bun build ./src/index.ts ./src/react/index.ts --outdir ./dist --format esm --external react --external @modelcontextprotocol/sdk --watch",
"build:types": "bunx tsc -p tsconfig.build.json",
"publish": "bun publish",
"check": "bunx prettier --check . && bunx tsc",
"prettier:fix": "bunx prettier --write .",
"fix:oranda": "sed -i 's/```tsx/```ts/g' README.md",
"build:site": "npx @axodotdev/oranda build",
"deploy:site": "npx wrangler deploy",
"prepare": "husky"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.19.1",
"strict-url-sanitise": "^0.0.1"
},
"devDependencies": {
"@axodotdev/oranda": "^0.6.5",
"@types/node": "^24.7.0",
"@types/react": "^19.0.12",
"concurrently": "^9.2.0",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"react": "^19.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"wrangler": "^4.20.2"
},
"packageManager": "bun@1.2.22"
}