-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy path.sync-manifest.json
More file actions
95 lines (95 loc) · 2.84 KB
/
Copy path.sync-manifest.json
File metadata and controls
95 lines (95 loc) · 2.84 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"$schema": "./sync-manifest.schema.json",
"bases": [
{
"name": "privy-next-starter",
"path": "privy-next-starter",
"targets": [
"examples/privy-next-cross-app-connect",
"examples/privy-next-cross-app-provider",
"examples/privy-next-farcaster",
"examples/privy-next-farcaster-mini-app",
"examples/privy-next-fiat-onramp",
"examples/privy-next-funding",
"examples/privy-next-permissionless",
"examples/privy-next-session-keys",
"examples/privy-next-smart-wallets",
"examples/privy-next-solana",
"examples/privy-next-wagmi"
],
"syncRules": {
"always": [
"src/components/ui/**/*",
"src/components/reusables/**/*",
"src/app/layout.tsx",
"src/app/globals.css",
"src/app/favicon.ico",
"tsconfig.json",
"tailwind.config.js",
"postcss.config.mjs",
"eslint.config.mjs",
"next.config.ts",
"LICENSE"
],
"sections": [
"src/components/sections/create-a-wallet.tsx",
"src/components/sections/fund-wallet.tsx",
"src/components/sections/link-accounts.tsx",
"src/components/sections/unlink-accounts.tsx",
"src/components/sections/wallet-actions.tsx",
"src/components/sections/session-signers.tsx",
"src/components/sections/wallet-management.tsx",
"src/components/sections/mfa.tsx",
"src/components/sections/user-object.tsx"
],
"never": [
"src/app/page.tsx",
"src/providers/providers.tsx",
"README.md",
"package.json",
".env.local",
".env.example"
]
}
},
{
"name": "privy-react-starter",
"path": "privy-react-starter",
"targets": [
"examples/privy-react-chrome-extension",
"examples/privy-react-pwa"
],
"syncRules": {
"always": [
"src/components/ui/**/*",
"src/components/reusables/**/*",
"tsconfig.json",
"tailwind.config.js",
"postcss.config.mjs",
"eslint.config.js"
],
"sections": [],
"never": [
"src/App.tsx",
"src/providers/PrivyProvider.tsx",
"README.md",
"package.json",
".env.local"
]
}
}
],
"sectionOverrides": {
"description": "Examples can selectively opt-out of specific section syncs",
"rules": {
"examples/privy-next-wagmi": {
"exclude": ["src/components/sections/wallet-actions.tsx"],
"reason": "Uses wagmi-wallet-actions.tsx instead"
},
"examples/privy-next-solana": {
"exclude": ["src/components/sections/wallet-actions.tsx"],
"reason": "Uses solana-specific wallet actions"
}
}
}
}