clerk 3.3.0 → 3.3.1-canary.0af7dde

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.
Files changed (2) hide show
  1. package/README.md +17 -17
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -24,37 +24,37 @@ Usage: clerk [options] [command]
24
24
  Clerk CLI
25
25
 
26
26
  Options:
27
- -h, --help Display help for command
27
+ -v, --version Output the version number
28
28
  --input-json <json> Pass command options as a JSON string, @file.json, or -
29
29
  for stdin
30
30
  --mode <mode> Force interaction mode (human or agent). Defaults to
31
31
  auto-detect based on TTY.
32
- -v, --version Output the version number
33
32
  --verbose Show detailed output (enables debug messages)
33
+ -h, --help Display help for command
34
34
 
35
35
  Commands:
36
- api [options] [endpoint] [filter] Call any Clerk API endpoint (200+; `clerk api ls` to browse)
37
- apps Manage your Clerk applications
36
+ init [options] Initialize Clerk in your project
38
37
  auth Manage authentication
39
- completion [shell] Generate shell autocompletion script
38
+ link [options] Link this project to a Clerk application
39
+ unlink [options] Unlink this project from its Clerk application
40
+ whoami [options] Show the current logged-in user and linked application
41
+ open Open Clerk resources in your browser
42
+ apps Manage your Clerk applications
43
+ users [options] Manage Clerk users
44
+ impersonate|imp [options] [user] Impersonate a Clerk user
45
+ env Manage environment variables
40
46
  config Manage instance configuration
41
- deploy Deploy a Clerk application to production
47
+ telemetry Control CLI usage telemetry (status, disable, enable)
48
+ enable Enable Clerk features on the linked instance
42
49
  disable Disable Clerk features on the linked instance
50
+ api [options] [endpoint] [filter] Call any Clerk API endpoint (200+; `clerk api ls` to browse)
43
51
  doctor [options] Check your project's Clerk integration health
44
- enable Enable Clerk features on the linked instance
45
- env Manage environment variables
46
- help [command] Display help for command
47
- impersonate|imp [options] [user] Impersonate a Clerk user
48
- init [options] Initialize Clerk in your project
49
- link [options] Link this project to a Clerk application
50
52
  mcp Manage the Clerk remote MCP server connection for AI editors and CLIs
51
- open Open Clerk resources in your browser
52
- telemetry Control CLI usage telemetry (status, disable, enable)
53
- unlink [options] Unlink this project from its Clerk application
53
+ completion [shell] Generate shell autocompletion script
54
54
  update [options] Update the Clerk CLI to the latest version
55
- users [options] Manage Clerk users
55
+ deploy Deploy a Clerk application to production
56
56
  webhooks Stream webhook events to a local handler and verify their signatures
57
- whoami [options] Show the current logged-in user and linked application
57
+ help [command] Display help for command
58
58
  bird Play Clerk Bird, a Flappy Bird game in your terminal
59
59
  ```
60
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clerk",
3
- "version": "3.3.0",
3
+ "version": "3.3.1-canary.0af7dde",
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": "3.3.0",
34
- "@clerk/cli-darwin-x64": "3.3.0",
35
- "@clerk/cli-linux-arm64": "3.3.0",
36
- "@clerk/cli-linux-arm64-musl": "3.3.0",
37
- "@clerk/cli-linux-x64": "3.3.0",
38
- "@clerk/cli-linux-x64-musl": "3.3.0",
39
- "@clerk/cli-win32-arm64": "3.3.0",
40
- "@clerk/cli-win32-x64": "3.3.0"
33
+ "@clerk/cli-darwin-arm64": "3.3.1-canary.0af7dde",
34
+ "@clerk/cli-darwin-x64": "3.3.1-canary.0af7dde",
35
+ "@clerk/cli-linux-arm64": "3.3.1-canary.0af7dde",
36
+ "@clerk/cli-linux-arm64-musl": "3.3.1-canary.0af7dde",
37
+ "@clerk/cli-linux-x64": "3.3.1-canary.0af7dde",
38
+ "@clerk/cli-linux-x64-musl": "3.3.1-canary.0af7dde",
39
+ "@clerk/cli-win32-arm64": "3.3.1-canary.0af7dde",
40
+ "@clerk/cli-win32-x64": "3.3.1-canary.0af7dde"
41
41
  }
42
42
  }