-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.31 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.31 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
{
"name": "kalien",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "node node_modules/vite/bin/vite.js dev",
"build": "vite build",
"deploy:testnet": "vite build && wrangler deploy",
"deploy:mainnet": "CLOUDFLARE_ENV=mainnet vite build --mode mainnet && wrangler deploy --env mainnet",
"typegen": "WRANGLER_LOG_PATH=.wrangler/logs wrangler types",
"typegen:check": "WRANGLER_LOG_PATH=.wrangler/logs wrangler types --check",
"typecheck:app": "tsc --noEmit -p tsconfig.json",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json",
"typecheck:worker": "tsc --noEmit -p worker/tsconfig.json",
"typecheck:scripts": "tsc --noEmit -p scripts/tsconfig.json",
"typecheck": "bun run typegen:check && bun run typecheck:app && bun run typecheck:node && bun run typecheck:worker && bun run typecheck:scripts",
"lint": "oxlint src worker",
"lint:fix": "oxlint src worker --fix",
"format": "oxfmt src worker --write",
"format:check": "oxfmt src worker --check",
"check": "bun run typecheck && bun run lint && bun run format:check"
},
"dependencies": {
"@fontsource/monaspace-krypton": "^5.2.5",
"@fontsource/monaspace-neon": "^5.2.5",
"@openzeppelin/relayer-plugin-channels": "^0.16.0",
"@radix-ui/react-collapsible": "1.1.12",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-slot": "1.2.3",
"@simplewebauthn/browser": "^13.2.2",
"@simplewebauthn/server": "^13.2.3",
"@tailwindcss/vite": "^4.2.1",
"asteroids-score": "file:./shared/stellar/bindings/asteroids-score",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fzstd": "^0.1.1",
"hono": "^4.12.5",
"lucide-react": "^0.577.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"smart-account-kit": "^0.2.10",
"smart-account-kit-bindings": "^0.1.2",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"viem": "^2.47.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.26.1",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"playwright-core": "^1.58.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"wrangler": "^4.71.0"
}
}