-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.63 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.63 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@supabase/server",
"version": "1.0.0",
"description": "Server-side utilities for Supabase. Handles auth, client creation, and context injection so you write business logic, not boilerplate.",
"keywords": [
"edge",
"functions",
"supabase"
],
"homepage": "https://github.com/supabase/server#readme",
"bugs": {
"url": "https://github.com/supabase/server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supabase/server.git"
},
"license": "MIT",
"author": "supabase",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./core": {
"types": "./dist/core/index.d.mts",
"import": "./dist/core/index.mjs",
"require": "./dist/core/index.cjs"
},
"./adapters/hono": {
"types": "./dist/adapters/hono/index.d.mts",
"import": "./dist/adapters/hono/index.mjs",
"require": "./dist/adapters/hono/index.cjs"
},
"./adapters/h3": {
"types": "./dist/adapters/h3/index.d.mts",
"import": "./dist/adapters/h3/index.mjs",
"require": "./dist/adapters/h3/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"sideEffects": false,
"files": [
"dist",
"docs",
"skills"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"docs": "typedoc",
"format": "prettier --write .",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepare": "simple-git-hooks",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"simple-git-hooks": {
"pre-commit": "pnpm pretty-quick --staged",
"commit-msg": "pnpm commitlint --edit \"$1\""
},
"pnpm": {
"onlyBuiltDependencies": [
"simple-git-hooks"
]
},
"peerDependencies": {
"@supabase/supabase-js": "^2.0.0",
"h3": "^2.0.0",
"hono": "^4.0.0"
},
"peerDependenciesMeta": {
"h3": {
"optional": true
},
"hono": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@supabase/supabase-js": "^2.98.0",
"eslint": "^10.0.2",
"h3": "2.0.1-rc.20",
"hono": "^4.12.5",
"prettier": "3.8.1",
"pretty-quick": "^4.2.2",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.20.3",
"typedoc": "^0.28.19",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"dependencies": {
"jose": "^6.2.0"
}
}