clerk 1.1.1-snapshot.ea31050 → 1.1.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 +2 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -43,6 +43,8 @@ Commands:
|
|
|
43
43
|
users [options] Manage Clerk users
|
|
44
44
|
env Manage environment variables
|
|
45
45
|
config Manage instance configuration
|
|
46
|
+
enable Enable Clerk features on the linked instance
|
|
47
|
+
disable Disable Clerk features on the linked instance
|
|
46
48
|
api [options] [endpoint] [filter] Make authenticated requests to the Clerk API
|
|
47
49
|
doctor [options] Check your project's Clerk integration health
|
|
48
50
|
completion [shell] Generate shell autocompletion script
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clerk",
|
|
3
|
-
"version": "1.1.1
|
|
3
|
+
"version": "1.1.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": "1.1.1
|
|
34
|
-
"@clerk/cli-darwin-x64": "1.1.1
|
|
35
|
-
"@clerk/cli-linux-arm64": "1.1.1
|
|
36
|
-
"@clerk/cli-linux-arm64-musl": "1.1.1
|
|
37
|
-
"@clerk/cli-linux-x64": "1.1.1
|
|
38
|
-
"@clerk/cli-linux-x64-musl": "1.1.1
|
|
39
|
-
"@clerk/cli-win32-arm64": "1.1.1
|
|
40
|
-
"@clerk/cli-win32-x64": "1.1.1
|
|
33
|
+
"@clerk/cli-darwin-arm64": "1.1.1",
|
|
34
|
+
"@clerk/cli-darwin-x64": "1.1.1",
|
|
35
|
+
"@clerk/cli-linux-arm64": "1.1.1",
|
|
36
|
+
"@clerk/cli-linux-arm64-musl": "1.1.1",
|
|
37
|
+
"@clerk/cli-linux-x64": "1.1.1",
|
|
38
|
+
"@clerk/cli-linux-x64-musl": "1.1.1",
|
|
39
|
+
"@clerk/cli-win32-arm64": "1.1.1",
|
|
40
|
+
"@clerk/cli-win32-x64": "1.1.1"
|
|
41
41
|
}
|
|
42
42
|
}
|