clerk 2.2.1-canary.f86b4b4 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -48,9 +48,11 @@ Commands:
|
|
|
48
48
|
disable Disable Clerk features on the linked instance
|
|
49
49
|
api [options] [endpoint] [filter] Make authenticated requests to the Clerk API
|
|
50
50
|
doctor [options] Check your project's Clerk integration health
|
|
51
|
+
mcp Manage the Clerk remote MCP server connection for AI editors and CLIs
|
|
51
52
|
completion [shell] Generate shell autocompletion script
|
|
52
53
|
update [options] Update the Clerk CLI to the latest version
|
|
53
54
|
deploy Deploy a Clerk application to production
|
|
55
|
+
webhooks Stream webhook events to a local handler and verify their signatures
|
|
54
56
|
help [command] Display help for command
|
|
55
57
|
bird Play Clerk Bird, a Flappy Bird game in your terminal
|
|
56
58
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clerk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "Clerk CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"authentication",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"node": ">=20.0.0"
|
|
31
31
|
},
|
|
32
32
|
"optionalDependencies": {
|
|
33
|
-
"@clerk/cli-darwin-arm64": "2.
|
|
34
|
-
"@clerk/cli-darwin-x64": "2.
|
|
35
|
-
"@clerk/cli-linux-arm64": "2.
|
|
36
|
-
"@clerk/cli-linux-arm64-musl": "2.
|
|
37
|
-
"@clerk/cli-linux-x64": "2.
|
|
38
|
-
"@clerk/cli-linux-x64-musl": "2.
|
|
39
|
-
"@clerk/cli-win32-arm64": "2.
|
|
40
|
-
"@clerk/cli-win32-x64": "2.
|
|
33
|
+
"@clerk/cli-darwin-arm64": "2.3.0",
|
|
34
|
+
"@clerk/cli-darwin-x64": "2.3.0",
|
|
35
|
+
"@clerk/cli-linux-arm64": "2.3.0",
|
|
36
|
+
"@clerk/cli-linux-arm64-musl": "2.3.0",
|
|
37
|
+
"@clerk/cli-linux-x64": "2.3.0",
|
|
38
|
+
"@clerk/cli-linux-x64-musl": "2.3.0",
|
|
39
|
+
"@clerk/cli-win32-arm64": "2.3.0",
|
|
40
|
+
"@clerk/cli-win32-x64": "2.3.0"
|
|
41
41
|
}
|
|
42
42
|
}
|