-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.8 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
{
"name": "rappi-cli",
"version": "0.0.6",
"description": "Order from Rappi via terminal, REST API, or MCP server for Claude",
"author": "Cristian Correa",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/camilocbarrera/rappi-cli"
},
"keywords": [
"rappi",
"cli",
"food-delivery",
"mcp",
"claude",
"hono",
"bun",
"colombia"
],
"bin": {
"rappi": "index.ts"
},
"module": "index.ts",
"type": "module",
"files": [
"index.ts",
"server.ts",
"src/**/*.ts",
"README.md",
"CLAUDE.md"
],
"scripts": {
"setup": "bun run src/setup.ts",
"whoami": "bun run src/commands/whoami.ts",
"search": "bun run src/commands/search.ts",
"restaurants": "bun run src/commands/restaurants.ts",
"store": "bun run src/commands/store.ts",
"product": "bun run src/commands/product.ts",
"cart": "bun run src/commands/cart.ts",
"add-to-cart": "bun run src/commands/add-to-cart.ts",
"remove-from-cart": "bun run src/commands/remove-from-cart.ts",
"checkout": "bun run src/commands/checkout.ts",
"place-order": "bun run src/commands/place-order.ts",
"orders": "bun run src/commands/orders.ts",
"tip": "bun run src/commands/tip.ts",
"login": "bun run src/commands/login.ts",
"addresses": "bun run src/commands/addresses.ts",
"server": "bun run server.ts",
"mcp": "bun run src/mcp/index.ts"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@hono/zod-validator": "^0.7.6",
"@modelcontextprotocol/sdk": "^1.28.0",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"hono": "^4.12.9",
"ora": "^9.3.0",
"zod": "^4.3.6"
},
"optionalDependencies": {
"playwright": "^1.58.2"
}
}