clerk 2.0.1-snapshot.d637eb0 → 2.0.1
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 +20 -19
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -33,23 +33,24 @@ Options:
|
|
|
33
33
|
-h, --help Display help for command
|
|
34
34
|
|
|
35
35
|
Commands:
|
|
36
|
-
init
|
|
37
|
-
auth
|
|
38
|
-
link
|
|
39
|
-
unlink
|
|
40
|
-
whoami
|
|
41
|
-
open
|
|
42
|
-
apps
|
|
43
|
-
users
|
|
44
|
-
|
|
45
|
-
env
|
|
46
|
-
config
|
|
47
|
-
enable
|
|
48
|
-
disable
|
|
49
|
-
api
|
|
50
|
-
doctor
|
|
51
|
-
completion
|
|
52
|
-
update
|
|
53
|
-
deploy
|
|
54
|
-
help
|
|
36
|
+
init [options] Initialize Clerk in your project
|
|
37
|
+
auth Manage authentication
|
|
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
|
|
46
|
+
config Manage instance configuration
|
|
47
|
+
enable Enable Clerk features on the linked instance
|
|
48
|
+
disable Disable Clerk features on the linked instance
|
|
49
|
+
api [options] [endpoint] [filter] Make authenticated requests to the Clerk API
|
|
50
|
+
doctor [options] Check your project's Clerk integration health
|
|
51
|
+
completion [shell] Generate shell autocompletion script
|
|
52
|
+
update [options] Update the Clerk CLI to the latest version
|
|
53
|
+
deploy Deploy a Clerk application to production
|
|
54
|
+
help [command] Display help for command
|
|
55
|
+
bird Play Clerk Bird, a Flappy Bird game in your terminal
|
|
55
56
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clerk",
|
|
3
|
-
"version": "2.0.1
|
|
3
|
+
"version": "2.0.1",
|
|
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.0.1
|
|
34
|
-
"@clerk/cli-darwin-x64": "2.0.1
|
|
35
|
-
"@clerk/cli-linux-arm64": "2.0.1
|
|
36
|
-
"@clerk/cli-linux-arm64-musl": "2.0.1
|
|
37
|
-
"@clerk/cli-linux-x64": "2.0.1
|
|
38
|
-
"@clerk/cli-linux-x64-musl": "2.0.1
|
|
39
|
-
"@clerk/cli-win32-arm64": "2.0.1
|
|
40
|
-
"@clerk/cli-win32-x64": "2.0.1
|
|
33
|
+
"@clerk/cli-darwin-arm64": "2.0.1",
|
|
34
|
+
"@clerk/cli-darwin-x64": "2.0.1",
|
|
35
|
+
"@clerk/cli-linux-arm64": "2.0.1",
|
|
36
|
+
"@clerk/cli-linux-arm64-musl": "2.0.1",
|
|
37
|
+
"@clerk/cli-linux-x64": "2.0.1",
|
|
38
|
+
"@clerk/cli-linux-x64-musl": "2.0.1",
|
|
39
|
+
"@clerk/cli-win32-arm64": "2.0.1",
|
|
40
|
+
"@clerk/cli-win32-x64": "2.0.1"
|
|
41
41
|
}
|
|
42
42
|
}
|