-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.34 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@advenahq/supabase-js",
"description": "A robust, high-performance, type-safe wrapper for Supabase with caching, extensible configuration, and more.",
"keywords": [
"supabase",
"supabase-js",
"postgres",
"cache",
"caching"
],
"private": false,
"types": "./dist/main/index.d.ts",
"version": "4.11.3",
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"scripts": {
"build": "node scripts/build.js",
"bump-deps": "npx npm-check-updates --deep -u && pnpm up --latest --recursive && pnpm run format",
"format": "biome check . --write --skip-errors --config-path ../../",
"clean": "git clean -xdf .cache .turbo node_modules -f",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"pub": "npm publish --access public"
},
"exports": {
".": {
"import": "./dist/module/server/index.js",
"require": "./dist/main/server/index.js"
},
"./browser": {
"import": "./dist/module/browser/index.js",
"require": "./dist/main/browser/index.js"
},
"./client": {
"import": "./dist/module/browser/index.js",
"require": "./dist/main/browser/index.js"
},
"./types": {
"import": "./dist/module/types.js",
"require": "./dist/main/types.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdvenaHQ/supabase-js.git#main"
},
"bugs": {
"url": "https://github.com/AdvenaHQ/supabase-js/issues"
},
"homepage": "https://github.com/AdvenaHQ/supabase-js",
"license": "GPL-3.0-or-later",
"author": "Advena",
"devDependencies": {
"@types/node": "^22.10.2",
"esbuild": "^0.24.2",
"inquirer": "^12.3.0",
"ora": "^8.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"dependencies": {
"@supabase/postgrest-js": "^1.17.10",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.47.12",
"@upstash/redis": "^1.34.3",
"chalk": "4.1.2",
"dayjs": "^1.11.13",
"ioredis": "^5.4.2",
"next": "^15.1.2",
"server-only": "^0.0.1",
"ts-md5": "^1.3.1",
"zod": "^3.24.1"
}
}