-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.73 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
{
"name": "@psteinroe/fastify-supabase",
"version": "0.0.2",
"author": "Philipp Steinrötter <[email protected]>",
"type": "module",
"bugs": {
"url": "https://github.com/psteinroe/supabase-cache-helpers/issues"
},
"main": "./dist/index.cjs",
"source": "./src/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"keywords": [
"Supabase",
"Auth",
"Fastify"
],
"repository": {
"type": "git",
"url": "git+https://github.com/psteinroe/fastify-supabase.git"
},
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch",
"check": "biome check --apply ./**/*.ts",
"typecheck": "tsc --pretty --noEmit",
"build": "tsup",
"clear-branches": "git branch --merged | egrep -v \"(^\\*|main)\" | xargs git branch -d",
"merge-main": "git fetch origin main:main && git merge main",
"reset-git": "git checkout main && git pull && bun clear-branches",
"changeset": "changeset",
"ci:version": "changeset version",
"ci:release": "changeset publish"
},
"peerDependencies": {
"@supabase/supabase-js": "^2.0.0",
"@fastify/jwt": "^7.0.0 || ^8.0.0 || ^9.0.0"
},
"dependencies": {
"@fastify/error": "3.4.1",
"fastify-plugin": "4.5.1"
},
"devDependencies": {
"bun-plugin-dts": "0.2.1",
"@biomejs/biome": "1.5.3",
"@changesets/cli": "2.27.1",
"bun-types": "latest",
"fast-jwt": "4.0.0",
"fastify": "4.26.1",
"tsup": "8.0.2",
"typescript": "5.3.3"
}
}