-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.93 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.93 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
{
"name": "bun-react-template",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "src/index.tsx",
"module": "src/index.tsx",
"scripts": {
"dev": "bun --hot src/index.tsx",
"start": "NODE_ENV=production bun src/index.tsx",
"build": "bun run build.ts",
"check": "bunx tsc --noEmit",
"lines": "bun scripts/check-lines.ts",
"seed": "bun run src/utils/seed.ts",
"test:seed": "bun run src/utils/seed.ts && bun test tests/seed.test.ts",
"query": "bun run src/utils/query-test.ts",
"update-examples": "bun scripts/update-example-json.ts",
"mcp-counter": "bun run mcp-counter-server.ts",
"mcp-chess": "bun run mcp-chess-server.ts",
"mcp-service": "bun run mcp-service.ts"
},
"dependencies": {
"@hookform/resolvers": "^4.1.0",
"@noble/ciphers": "^1.3.0",
"@noble/curves": "^1.9.6",
"@noble/hashes": "^1.8.0",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@scure/base": "^1.2.6",
"@tanstack/react-query": "^5.72.1",
"bun-plugin-tailwind": "^0.0.14",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"js-yaml": "^4.1.0",
"light-bolt11-decoder": "^3.2.0",
"lucide-react": "^0.475.0",
"next-themes": "^0.4.6",
"nostr-tools": "^2.12.0",
"react": "^19",
"react-dom": "^19",
"react-hook-form": "^7.54.2",
"react-resizable-panels": "^2.1.7",
"react-router-dom": "^6.28.0",
"sonner": "^2.0.3",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^4.0.6",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.5",
"websocket-polyfill": "^1.0.0",
"ws": "^8.18.3",
"zod": "^3.25.30",
"zustand": "^5.0.3"
},
"devDependencies": {
"@contextvm/sdk": "^0.1.14",
"@modelcontextprotocol/sdk": "^1.17.2",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/react": "^19",
"@types/react-dom": "^19"
}
}