-
Notifications
You must be signed in to change notification settings - Fork 448
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.06 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.06 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
{
"name": "@clerk/fastify",
"version": "3.1.5",
"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,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./webhooks": {
"import": {
"types": "./dist/webhooks.d.mts",
"default": "./dist/webhooks.mjs"
},
"require": {
"types": "./dist/webhooks.d.ts",
"default": "./dist/webhooks.js"
}
},
"./types": {
"import": {
"types": "./dist/types.d.mts"
},
"require": {
"types": "./dist/types.d.ts"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"webhooks"
],
"scripts": {
"build": "tsdown --env.NODE_ENV production",
"clean": "rimraf ./dist",
"dev": "tsdown --watch",
"dev:pub": "pnpm dev -- --env.publish",
"format": "node ../../scripts/format-package.mjs",
"format:check": "node ../../scripts/format-package.mjs --check",
"lint": "eslint src",
"lint:attw": "attw --pack . --profile node16",
"lint:publint": "publint",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@clerk/backend": "workspace:^",
"@clerk/shared": "workspace:^",
"cookies": "0.9.1",
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"fastify": "^5.7.2"
},
"peerDependencies": {
"fastify": ">=5"
},
"engines": {
"node": ">=20.9.0"
},
"publishConfig": {
"access": "public"
}
}