-
-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathinfo.json
More file actions
47 lines (47 loc) · 1.1 KB
/
info.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"name": "PowerSync",
"description": "Add PowerSync offline sync to your application.",
"phase": "add-on",
"type": "add-on",
"category": "database",
"color": "#2563EB",
"priority": 55,
"link": "https://docs.powersync.com/client-sdk-references/js-web",
"modes": ["file-router"],
"envVars": [
{
"name": "VITE_POWERSYNC_URL",
"description": "PowerSync instance URL",
"required": true,
"file": ".env.local"
},
{
"name": "VITE_POWERSYNC_TOKEN",
"description": "Development token for local testing",
"required": false,
"secret": true,
"file": ".env.local"
}
],
"integrations": [
{
"type": "vite-plugin",
"path": "powersync-vite-plugin.ts",
"jsName": "powersyncVite",
"code": "powersyncVite()"
},
{
"type": "provider",
"path": "src/integrations/powersync/provider.tsx",
"jsName": "PowerSyncProvider"
}
],
"routes": [
{
"url": "/demo/powersync",
"name": "PowerSync",
"path": "src/routes/demo/powersync.tsx",
"jsName": "PowerSyncDemo"
}
]
}