forked from Slokh/anoncast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 881 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "anonworld",
"private": true,
"workspaces": ["packages/*", "apps/*"],
"scripts": {
"build": "bun run --filter '**' build",
"anoncast": "bun run --filter anoncast dev",
"farcaster": "bun run --filter farcaster dev",
"anonworld": "bun run --filter anonworld dev",
"api:dev": "bun run --filter @anonworld/api dev",
"api:start": "bun run --filter @anonworld/api start",
"credentials:build": "bun run --filter @anonworld/credentials build-circuits",
"credentials:test": "bun run --filter @anonworld/credentials test-circuits",
"db:push": "bun run --filter @anonworld/api db:push",
"updates": "bun run --filter @anonworld/api updates",
"watch-farcaster": "bun run --filter @anonworld/api watch-farcaster"
},
"dependencies": {
"@farcaster/frame-sdk": "^0.0.25",
"@farcaster/frame-wagmi-connector": "^0.0.12"
}
}