-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.34 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.34 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
{
"name": "@clerk/fastify",
"version": "2.1.20",
"description": "Clerk SDK for Fastify",
"keywords": [
"auth",
"authentication",
"passwordless",
"session",
"jwt",
"fastify"
],
"homepage": "https://clerk.com/",
"bugs": {
"url": "https://github.com/clerk/javascript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clerk/javascript.git",
"directory": "packages/fastify"
},
"license": "MIT",
"author": "Clerk",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup --env.NODE_ENV production",
"clean": "rimraf ./dist",
"dev": "tsup --watch",
"lint": "eslint src",
"lint:attw": "attw --pack .",
"lint:publint": "publint",
"publish:local": "pnpm yalc push --replace --sig",
"test": "jest",
"test:cache:clear": "jest --clearCache --useStderr"
},
"dependencies": {
"@clerk/backend": "workspace:^",
"@clerk/shared": "workspace:^",
"@clerk/types": "workspace:^",
"cookies": "0.8.0",
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"fastify": "^5.0.0"
},
"peerDependencies": {
"fastify": ">=5"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}