forked from supabase/auth-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.49 KB
/
package.json
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
{
"name": "@supabase/auth-helpers",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"build:example": "turbo run build:example",
"build:example:sveltekit": "turbo run build:example --filter=@example/sveltekit",
"build:example:nextjs": "turbo run build:example --filter=@example/nextjs",
"build:sveltekit": "turbo run build --filter=@supabase/auth-helpers-sveltekit",
"build:sveltekit:watch": "turbo run build:watch --filter=@supabase/auth-helpers-sveltekit",
"build:nextjs": "turbo run build --filter=@supabase/auth-helpers-nextjs",
"build:react": "turbo run build --filter=@supabase/auth-helpers-react",
"build:remix": "turbo run build --filter=@supabase/auth-helpers-remix",
"build:shared": "turbo run build --filter=@supabase/auth-helpers-shared",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"docs": "typedoc",
"clean:all": "turbo run clean:all",
"ci:version": "changeset version",
"ci:release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"prettier": "^2.5.1",
"turbo": "latest",
"typedoc": "^0.22.17",
"typescript": "4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x || 4.5.x || 4.6.x"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"peerDependencies": {
"typescript": "4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x || 4.5.x || 4.6.x"
}
}