-
Notifications
You must be signed in to change notification settings - Fork 448
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.92 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.92 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
109
110
111
{
"name": "@clerk/astro",
"version": "3.0.7",
"description": "Clerk SDK for Astro",
"keywords": [
"auth",
"authentication",
"astro",
"astro-integration",
"clerk",
"typescript",
"passwordless",
"astro-component",
"withastro"
],
"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/astro"
},
"license": "MIT",
"author": "Clerk",
"sideEffects": false,
"type": "module",
"imports": {
"#async-local-storage": {
"workerd": "./dist/async-local-storage.server.js",
"browser": "./dist/async-local-storage.client.js",
"node": "./dist/async-local-storage.server.js",
"default": "./dist/async-local-storage.server.js"
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"default": "./dist/react/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
},
"./internal": {
"types": "./dist/internal/index.d.ts",
"default": "./dist/internal/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"default": "./dist/server/index.js"
},
"./webhooks": {
"types": "./dist/webhooks.d.ts",
"default": "./dist/webhooks.js"
},
"./types": "./dist/types/index.d.ts",
"./env": "./env.d.ts",
"./components": "./components/index.ts",
"./package.json": "./package.json"
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"client",
"server",
"internal",
"components",
"webhooks",
"env.d.ts",
"types.ts"
],
"scripts": {
"build": "tsup --onSuccess \"pnpm build:dts\" && pnpm copy:components",
"build:dts": "tsc --emitDeclarationOnly --declaration",
"copy:components": "rm -rf ./components && mkdir -p ./components/ && cp -r ./src/astro-components/* ./components/ && cp ./src/types.ts ./",
"dev": "tsup --watch",
"dev:pub": "pnpm dev -- --env.publish",
"format": "node ../../scripts/format-package.mjs",
"format:check": "node ../../scripts/format-package.mjs --check",
"lint": "eslint src env.d.ts",
"lint:attw": "attw --pack . --profile esm-only --ignore-rules internal-resolution-error",
"lint:publint": "pnpm copy:components && publint",
"test": "vitest run"
},
"dependencies": {
"@clerk/backend": "workspace:^",
"@clerk/shared": "workspace:^",
"nanoid": "5.1.6",
"nanostores": "1.0.1"
},
"devDependencies": {
"@clerk/ui": "workspace:^",
"astro": "^5.17.1"
},
"peerDependencies": {
"astro": "^4.15.0 || ^5.0.0 || ^6.0.0"
},
"engines": {
"node": ">=20.9.0"
},
"publishConfig": {
"access": "public"
}
}