-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.82 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
{
"name": "walrus-image",
"version": "0.1.0",
"private": true,
"scripts": {
"devo": "next dev --turbopack",
"dev": "npx tsx ./src/server/server.ts",
"build": "next build",
"starto": "next start",
"start": "npx tsx ./src/server/server.ts",
"clean": "rm -rf public/uploads/* && rm -rf tars/*",
"lint": "next lint",
"pub": "cd contracts/file_blob && bash ./pub.sh",
"parse": "cd src/config && bash ./parse_out.sh",
"pp": "pnpm pub && pnpm parse",
"all": "pnpm pub && pnpm parse &&pnpm build"
},
"dependencies": {
"@mysten/bcs": "^1.6.0",
"@mysten/dapp-kit": "^0.15.7",
"@mysten/sui": "^1.28.1",
"@mysten/walrus": "^0.0.16",
"@mysten/walrus-wasm": "^0.0.6",
"@radix-ui/react-collapsible": "^1.1.8",
"@radix-ui/react-dialog": "^1.1.11",
"@radix-ui/react-slider": "^1.3.2",
"@radix-ui/react-slot": "^1.2.0",
"@tanstack/react-query": "^5.74.4",
"@tusky-io/ts-sdk": "^0.29.5",
"axios": "^1.8.4",
"bs58": "^6.0.0",
"class-variance-authority": "^0.7.1",
"client": "link:@mysten/sui/client",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"lucide-react": "^0.488.0",
"memfs": "^4.17.0",
"next": "15.4.0-canary.20",
"radix-ui": "^1.3.4",
"react": "19.2.0-canary-f7396427-20250501",
"react-dom": "19.2.0-canary-f7396427-20250501",
"react-dropzone": "^14.3.8",
"react-number-format": "^5.4.4",
"tailwind-merge": "^3.2.0",
"tar-stream": "^3.1.7",
"tus-js-client": "^4.3.1",
"tw-animate-css": "^1.2.8",
"winston": "^3.17.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.4",
"@types/node": "^20.17.30",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@types/tar-stream": "^3.1.3",
"tailwindcss": "^4.1.4",
"typescript": "^5.8.3"
}
}