-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "slotscribe-workspace",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"demo": "concurrently -k -s first \"pnpm dev\" \"wait-on http://localhost:3000 && pnpm demo:tx\"",
"demo:tx": "tsx scripts/demo-transfer.ts",
"verify": "tsx scripts/verify.ts",
"examples": "tsx scripts/examples-complex-tx.ts",
"mcp": "tsx src/mcp/server.ts",
"build:sdk": "pnpm --filter slotscribe build"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.983.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"@solana/web3.js": "^1.98.0",
"@types/dotenv": "^8.2.3",
"bs58": "^6.0.0",
"dotenv": "^17.2.4",
"json-canonicalize": "^1.0.6",
"lucide-react": "^0.563.0",
"next": "^15.1.0",
"openai": "^6.18.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bs58": "^5.0.0",
"@types/node": "^22.19.8",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.0",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"wait-on": "^8.0.0"
}
}