-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@supabase/ssr",
"version": "0.0.0",
"description": "Use the Supabase JavaScript library in popular server-side rendering (SSR) frameworks.",
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"scripts": {
"build": "tsc && tsc -p tsconfig.main.json",
"test": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supabase/ssr.git"
},
"keywords": [
"Supabase",
"SSR",
"Server-Side",
"Rendering",
"Next",
"Next.js",
"NextJS",
"Remix",
"Svelte",
"SvelteKit",
"Postgres"
],
"author": "Supabase, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/supabase/ssr/issues"
},
"homepage": "https://github.com/supabase/ssr#readme",
"devDependencies": {
"@eslint/js": "^9.3.0",
"@supabase/supabase-js": "^2.43.4",
"@types/cookie": "^0.6.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0",
"vitest": "^1.6.0"
},
"peerDependencies": {
"@supabase/supabase-js": "^2.43.4"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.9.5"
},
"dependencies": {
"cookie": "^0.6.0"
}
}