appwrite-cli 22.1.0 → 22.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 -2
- package/dist/cli.cjs +11 -9
- package/dist/index.cjs +8 -8
- package/dist/index.js +8 -8
- package/dist/lib/constants.d.ts +1 -1
- package/dist/lib/utils.d.ts.map +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Once the installation is complete, you can verify the install using
|
|
|
29
29
|
|
|
30
30
|
```sh
|
|
31
31
|
$ appwrite -v
|
|
32
|
-
22.1.
|
|
32
|
+
22.1.1
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
### Install using prebuilt binaries
|
|
@@ -83,7 +83,7 @@ $ scoop install https://raw.githubusercontent.com/appwrite/sdk-for-cli/master/sc
|
|
|
83
83
|
Once the installation completes, you can verify your install using
|
|
84
84
|
```
|
|
85
85
|
$ appwrite -v
|
|
86
|
-
22.1.
|
|
86
|
+
22.1.1
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
## Getting Started
|
package/dist/cli.cjs
CHANGED
|
@@ -86099,7 +86099,7 @@ var package_default = {
|
|
|
86099
86099
|
type: "module",
|
|
86100
86100
|
homepage: "https://appwrite.io/support",
|
|
86101
86101
|
description: "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
|
|
86102
|
-
version: "22.1.
|
|
86102
|
+
version: "22.1.1",
|
|
86103
86103
|
license: "BSD-3-Clause",
|
|
86104
86104
|
main: "dist/index.cjs",
|
|
86105
86105
|
module: "dist/index.js",
|
|
@@ -86139,12 +86139,12 @@ var package_default = {
|
|
|
86139
86139
|
generate: "tsx scripts/generate-commands.ts",
|
|
86140
86140
|
prepublishOnly: "npm run build",
|
|
86141
86141
|
test: 'echo "Error: no test specified" && exit 1',
|
|
86142
|
-
"linux-x64": "bun build cli.ts --compile --
|
|
86143
|
-
"linux-arm64": "bun build cli.ts --compile --
|
|
86144
|
-
"mac-x64": "bun build cli.ts --compile --
|
|
86145
|
-
"mac-arm64": "bun build cli.ts --compile --
|
|
86146
|
-
"windows-x64": "bun build cli.ts --compile --
|
|
86147
|
-
"windows-arm64": "bun build cli.ts --compile --
|
|
86142
|
+
"linux-x64": "bun build cli.ts --compile --minify --target=bun-linux-x64 --outfile build/appwrite-cli-linux-x64",
|
|
86143
|
+
"linux-arm64": "bun build cli.ts --compile --minify --target=bun-linux-arm64 --outfile build/appwrite-cli-linux-arm64",
|
|
86144
|
+
"mac-x64": "bun build cli.ts --compile --minify --target=bun-darwin-x64 --outfile build/appwrite-cli-darwin-x64",
|
|
86145
|
+
"mac-arm64": "bun build cli.ts --compile --minify --target=bun-darwin-arm64 --outfile build/appwrite-cli-darwin-arm64",
|
|
86146
|
+
"windows-x64": "bun build cli.ts --compile --minify --target=bun-windows-x64 --outfile build/appwrite-cli-win-x64.exe",
|
|
86147
|
+
"windows-arm64": "bun build cli.ts --compile --minify --target=bun-windows-arm64 --outfile build/appwrite-cli-win-arm64.exe"
|
|
86148
86148
|
},
|
|
86149
86149
|
dependencies: {
|
|
86150
86150
|
"@appwrite.io/console": "^15.0.0",
|
|
@@ -100830,7 +100830,7 @@ var validateCrossDatabase = (data, ctx) => {
|
|
|
100830
100830
|
// lib/constants.ts
|
|
100831
100831
|
var SDK_TITLE = "Appwrite";
|
|
100832
100832
|
var SDK_TITLE_LOWER = "appwrite";
|
|
100833
|
-
var SDK_VERSION = "22.1.
|
|
100833
|
+
var SDK_VERSION = "22.1.1";
|
|
100834
100834
|
var SDK_NAME = "Command Line";
|
|
100835
100835
|
var SDK_PLATFORM = "console";
|
|
100836
100836
|
var SDK_LANGUAGE = "cli";
|
|
@@ -131393,6 +131393,7 @@ var getHomebrewLatestVersion = async (options = {}) => {
|
|
|
131393
131393
|
}
|
|
131394
131394
|
};
|
|
131395
131395
|
var CLOUD_REGION_CODES = /* @__PURE__ */ new Set(["fra", "nyc", "syd", "sfo", "sgp", "tor"]);
|
|
131396
|
+
var CLOUD_LOGIN_ENVIRONMENTS = /* @__PURE__ */ new Set(["stage"]);
|
|
131396
131397
|
var isCloudHostname = (hostname3) => {
|
|
131397
131398
|
if (hostname3 === "cloud.appwrite.io") {
|
|
131398
131399
|
return true;
|
|
@@ -131411,10 +131412,11 @@ var isRegionalCloudEndpoint = (endpoint) => {
|
|
|
131411
131412
|
}
|
|
131412
131413
|
};
|
|
131413
131414
|
var isLocalhostHostname = (hostname3) => hostname3 === "localhost" || hostname3 === "127.0.0.1" || hostname3 === "[::1]";
|
|
131415
|
+
var isCloudEnvironmentHostname = (hostname3) => hostname3.endsWith(".cloud.appwrite.io") && CLOUD_LOGIN_ENVIRONMENTS.has(hostname3.split(".")[0]);
|
|
131414
131416
|
var isCloudLoginEndpoint = (endpoint) => {
|
|
131415
131417
|
try {
|
|
131416
131418
|
const hostname3 = new URL(endpoint).hostname;
|
|
131417
|
-
return isCloudHostname(hostname3) || isFlagEnabled("devCloudLogin") && isLocalhostHostname(hostname3);
|
|
131419
|
+
return isCloudHostname(hostname3) || isCloudEnvironmentHostname(hostname3) || isFlagEnabled("devCloudLogin") && isLocalhostHostname(hostname3);
|
|
131418
131420
|
} catch (_error) {
|
|
131419
131421
|
return false;
|
|
131420
131422
|
}
|
package/dist/index.cjs
CHANGED
|
@@ -65125,7 +65125,7 @@ var id_default = ID;
|
|
|
65125
65125
|
// lib/constants.ts
|
|
65126
65126
|
var SDK_TITLE = "Appwrite";
|
|
65127
65127
|
var SDK_TITLE_LOWER = "appwrite";
|
|
65128
|
-
var SDK_VERSION = "22.1.
|
|
65128
|
+
var SDK_VERSION = "22.1.1";
|
|
65129
65129
|
var SDK_LOGO = "\n _ _ _ ___ __ _____\n /_\\ _ __ _ ____ ___ __(_) |_ ___ / __\\ / / \\_ \\\n //_\\\\| '_ \\| '_ \\ \\ /\\ / / '__| | __/ _ \\ / / / / / /\\/\n / _ \\ |_) | |_) \\ V V /| | | | || __/ / /___/ /___/\\/ /_\n \\_/ \\_/ .__/| .__/ \\_/\\_/ |_| |_|\\__\\___| \\____/\\____/\\____/\n |_| |_|\n\n";
|
|
65130
65130
|
var EXECUTABLE_NAME = "appwrite";
|
|
65131
65131
|
var UPDATE_CHECK_INTERVAL_MS = 24 * 60 * 60 * 1e3;
|
|
@@ -104431,7 +104431,7 @@ var package_default = {
|
|
|
104431
104431
|
type: "module",
|
|
104432
104432
|
homepage: "https://appwrite.io/support",
|
|
104433
104433
|
description: "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
|
|
104434
|
-
version: "22.1.
|
|
104434
|
+
version: "22.1.1",
|
|
104435
104435
|
license: "BSD-3-Clause",
|
|
104436
104436
|
main: "dist/index.cjs",
|
|
104437
104437
|
module: "dist/index.js",
|
|
@@ -104471,12 +104471,12 @@ var package_default = {
|
|
|
104471
104471
|
generate: "tsx scripts/generate-commands.ts",
|
|
104472
104472
|
prepublishOnly: "npm run build",
|
|
104473
104473
|
test: 'echo "Error: no test specified" && exit 1',
|
|
104474
|
-
"linux-x64": "bun build cli.ts --compile --
|
|
104475
|
-
"linux-arm64": "bun build cli.ts --compile --
|
|
104476
|
-
"mac-x64": "bun build cli.ts --compile --
|
|
104477
|
-
"mac-arm64": "bun build cli.ts --compile --
|
|
104478
|
-
"windows-x64": "bun build cli.ts --compile --
|
|
104479
|
-
"windows-arm64": "bun build cli.ts --compile --
|
|
104474
|
+
"linux-x64": "bun build cli.ts --compile --minify --target=bun-linux-x64 --outfile build/appwrite-cli-linux-x64",
|
|
104475
|
+
"linux-arm64": "bun build cli.ts --compile --minify --target=bun-linux-arm64 --outfile build/appwrite-cli-linux-arm64",
|
|
104476
|
+
"mac-x64": "bun build cli.ts --compile --minify --target=bun-darwin-x64 --outfile build/appwrite-cli-darwin-x64",
|
|
104477
|
+
"mac-arm64": "bun build cli.ts --compile --minify --target=bun-darwin-arm64 --outfile build/appwrite-cli-darwin-arm64",
|
|
104478
|
+
"windows-x64": "bun build cli.ts --compile --minify --target=bun-windows-x64 --outfile build/appwrite-cli-win-x64.exe",
|
|
104479
|
+
"windows-arm64": "bun build cli.ts --compile --minify --target=bun-windows-arm64 --outfile build/appwrite-cli-win-arm64.exe"
|
|
104480
104480
|
},
|
|
104481
104481
|
dependencies: {
|
|
104482
104482
|
"@appwrite.io/console": "^15.0.0",
|
package/dist/index.js
CHANGED
|
@@ -65105,7 +65105,7 @@ var id_default = ID;
|
|
|
65105
65105
|
// lib/constants.ts
|
|
65106
65106
|
var SDK_TITLE = "Appwrite";
|
|
65107
65107
|
var SDK_TITLE_LOWER = "appwrite";
|
|
65108
|
-
var SDK_VERSION = "22.1.
|
|
65108
|
+
var SDK_VERSION = "22.1.1";
|
|
65109
65109
|
var SDK_LOGO = "\n _ _ _ ___ __ _____\n /_\\ _ __ _ ____ ___ __(_) |_ ___ / __\\ / / \\_ \\\n //_\\\\| '_ \\| '_ \\ \\ /\\ / / '__| | __/ _ \\ / / / / / /\\/\n / _ \\ |_) | |_) \\ V V /| | | | || __/ / /___/ /___/\\/ /_\n \\_/ \\_/ .__/| .__/ \\_/\\_/ |_| |_|\\__\\___| \\____/\\____/\\____/\n |_| |_|\n\n";
|
|
65110
65110
|
var EXECUTABLE_NAME = "appwrite";
|
|
65111
65111
|
var UPDATE_CHECK_INTERVAL_MS = 24 * 60 * 60 * 1e3;
|
|
@@ -104411,7 +104411,7 @@ var package_default = {
|
|
|
104411
104411
|
type: "module",
|
|
104412
104412
|
homepage: "https://appwrite.io/support",
|
|
104413
104413
|
description: "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
|
|
104414
|
-
version: "22.1.
|
|
104414
|
+
version: "22.1.1",
|
|
104415
104415
|
license: "BSD-3-Clause",
|
|
104416
104416
|
main: "dist/index.cjs",
|
|
104417
104417
|
module: "dist/index.js",
|
|
@@ -104451,12 +104451,12 @@ var package_default = {
|
|
|
104451
104451
|
generate: "tsx scripts/generate-commands.ts",
|
|
104452
104452
|
prepublishOnly: "npm run build",
|
|
104453
104453
|
test: 'echo "Error: no test specified" && exit 1',
|
|
104454
|
-
"linux-x64": "bun build cli.ts --compile --
|
|
104455
|
-
"linux-arm64": "bun build cli.ts --compile --
|
|
104456
|
-
"mac-x64": "bun build cli.ts --compile --
|
|
104457
|
-
"mac-arm64": "bun build cli.ts --compile --
|
|
104458
|
-
"windows-x64": "bun build cli.ts --compile --
|
|
104459
|
-
"windows-arm64": "bun build cli.ts --compile --
|
|
104454
|
+
"linux-x64": "bun build cli.ts --compile --minify --target=bun-linux-x64 --outfile build/appwrite-cli-linux-x64",
|
|
104455
|
+
"linux-arm64": "bun build cli.ts --compile --minify --target=bun-linux-arm64 --outfile build/appwrite-cli-linux-arm64",
|
|
104456
|
+
"mac-x64": "bun build cli.ts --compile --minify --target=bun-darwin-x64 --outfile build/appwrite-cli-darwin-x64",
|
|
104457
|
+
"mac-arm64": "bun build cli.ts --compile --minify --target=bun-darwin-arm64 --outfile build/appwrite-cli-darwin-arm64",
|
|
104458
|
+
"windows-x64": "bun build cli.ts --compile --minify --target=bun-windows-x64 --outfile build/appwrite-cli-win-x64.exe",
|
|
104459
|
+
"windows-arm64": "bun build cli.ts --compile --minify --target=bun-windows-arm64 --outfile build/appwrite-cli-win-arm64.exe"
|
|
104460
104460
|
},
|
|
104461
104461
|
dependencies: {
|
|
104462
104462
|
"@appwrite.io/console": "^15.0.0",
|
package/dist/lib/constants.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const SDK_TITLE = "Appwrite";
|
|
2
2
|
export declare const SDK_TITLE_LOWER = "appwrite";
|
|
3
|
-
export declare const SDK_VERSION = "22.1.
|
|
3
|
+
export declare const SDK_VERSION = "22.1.1";
|
|
4
4
|
export declare const SDK_NAME = "Command Line";
|
|
5
5
|
export declare const SDK_PLATFORM = "console";
|
|
6
6
|
export declare const SDK_LANGUAGE = "cli";
|
package/dist/lib/utils.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../lib/utils.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAEnD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAczD,eAAO,MAAM,oBAAoB,GAC/B,SAAS,MAAM,CAAC,OAAO,EACvB,WAAW,MAAM,CAAC,UAAU,EAC5B,cAAc,MAAM,CAAC,UAAU,EAAE,KAChC,YAiFF,CAAC;AAEF,eAAO,MAAM,oBAAoB,GAC/B,OAAO,MAAM,EACb,UAAU,MAAM,KACf,MASF,CAAC;AAEF,KAAK,eAAe,GAAG;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,eAAO,MAAM,wBAAwB,GAAI,MAAM,eAAe,KAAG,OAEhE,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,OAAO,OAAO,KAAG,MAMhD,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,KAAK,GAAG,UAAU,GAAG,YAAY,CAAC;AAEnE,KAAK,oBAAoB,GAAG;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,CAAC;AAuGF,eAAO,MAAM,wBAAwB,QAAO,kBAAkB,GAAG,IAchE,CAAC;AAcF,eAAO,MAAM,2BAA2B,GACtC,UAAS;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAO,KACnC,MAAM,GAAG,IAsCX,CAAC;
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../lib/utils.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AAEnD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAczD,eAAO,MAAM,oBAAoB,GAC/B,SAAS,MAAM,CAAC,OAAO,EACvB,WAAW,MAAM,CAAC,UAAU,EAC5B,cAAc,MAAM,CAAC,UAAU,EAAE,KAChC,YAiFF,CAAC;AAEF,eAAO,MAAM,oBAAoB,GAC/B,OAAO,MAAM,EACb,UAAU,MAAM,KACf,MASF,CAAC;AAEF,KAAK,eAAe,GAAG;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,eAAO,MAAM,wBAAwB,GAAI,MAAM,eAAe,KAAG,OAEhE,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,OAAO,OAAO,KAAG,MAMhD,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG,KAAK,GAAG,UAAU,GAAG,YAAY,CAAC;AAEnE,KAAK,oBAAoB,GAAG;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,CAAC;AAuGF,eAAO,MAAM,wBAAwB,QAAO,kBAAkB,GAAG,IAchE,CAAC;AAcF,eAAO,MAAM,2BAA2B,GACtC,UAAS;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAO,KACnC,MAAM,GAAG,IAsCX,CAAC;AAkDF,eAAO,MAAM,eAAe,GAAI,UAAU,MAAM,KAAG,OAUlD,CAAC;AAEF,eAAO,MAAM,uBAAuB,GAAI,UAAU,MAAM,KAAG,OAO1D,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAAI,UAAU,MAAM,KAAG,OACuB,CAAC;AAM/E,eAAO,MAAM,oBAAoB,GAAI,UAAU,MAAM,KAAG,OAWvD,CAAC;AAEF,eAAO,MAAM,iBAAiB,GAAI,UAAU,MAAM,KAAG,MAgBpD,CAAC;AAEF,eAAO,MAAM,qBAAqB,GAChC,UAAU,MAAM,EAChB,WAAW,MAAM,EACjB,gBAAgB,MAAM,KACrB,MAmBF,CAAC;AAEF,eAAO,MAAM,+BAA+B,GAC1C,UAAU,MAAM,EAChB,WAAW,MAAM,EACjB,YAAY,MAAM,EAClB,cAAc,MAAM,EACpB,gBAAgB,MAAM,KACrB,MAGF,CAAC;AAEF,eAAO,MAAM,2BAA2B,GACtC,UAAU,MAAM,EAChB,WAAW,MAAM,EACjB,QAAQ,MAAM,EACd,cAAc,MAAM,EACpB,gBAAgB,MAAM,KACrB,MAGF,CAAC;AAqIF,eAAO,MAAM,qBAAqB,GAChC,gBAAgB,MAAM,EACtB,eAAe,MAAM,KACpB,IAeF,CAAC;AAEF;;GAEG;AACH,wBAAsB,gBAAgB,CACpC,OAAO,GAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAO,GACnC,OAAO,CAAC,MAAM,CAAC,CAiBjB;AAED,wBAAsB,+BAA+B,CACnD,MAAM,EAAE,kBAAkB,GAAG,IAAI,EACjC,OAAO,GAAE,oBAAyB,GACjC,OAAO,CAAC,MAAM,CAAC,CAQjB;AAED,wBAAsB,sCAAsC,CAC1D,OAAO,GAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAO,GACnC,OAAO,CAAC,MAAM,CAAC,CAEjB;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAavE;AAED,wBAAsB,2BAA2B,CAC/C,cAAc,EAAE,MAAM,GACrB,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAsExB;AAED,wBAAgB,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAiBpD;AAED,wBAAsB,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAmBhE;AAED,wBAAgB,gBAAgB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAqBzD;AAED,KAAK,iBAAiB,GAAG;IACvB,IAAI,EAAE,MAAM,MAAM,EAAE,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,qBAAqB,GAAI,aAAa,iBAAiB,KAAG,IAMtE,CAAC;AAEF,wBAAgB,OAAO,IAAI,OAAO,CAIjC;AAwBD,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;CACjB;AAkBD,wBAAgB,kBAAkB,CAAC,mBAAmB,EAAE,MAAM,GAAG,OAAO,CAWvE;AAED,wBAAgB,oBAAoB,IAAI;IACtC,MAAM,EAAE,SAAS,EAAE,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;CACjB,CAgEA;AAED,wBAAgB,mBAAmB,CACjC,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,SAAS,EAAE,GAClB,SAAS,EAAE,CA6Bb;AAED,wBAAgB,WAAW,CACzB,GAAG,EAAE,MAAM,EACX,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,EAAE,EAC1B,cAAc,EAAE,MAAM,EAAE,EACxB,WAAW,EAAE,OAAO,GACnB,IAAI,CAiEN;AAED,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,GAAG,OAAO,CAa3E;AAED;;;;;;;GAOG;AACH,wBAAgB,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,WAAW,CAAC,EACjE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC7B,MAAM,EAAE,CAAC,GACR,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAWZ"}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"type": "module",
|
|
4
4
|
"homepage": "https://appwrite.io/support",
|
|
5
5
|
"description": "Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API",
|
|
6
|
-
"version": "22.1.
|
|
6
|
+
"version": "22.1.1",
|
|
7
7
|
"license": "BSD-3-Clause",
|
|
8
8
|
"main": "dist/index.cjs",
|
|
9
9
|
"module": "dist/index.js",
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"generate": "tsx scripts/generate-commands.ts",
|
|
44
44
|
"prepublishOnly": "npm run build",
|
|
45
45
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
46
|
-
"linux-x64": "bun build cli.ts --compile --
|
|
47
|
-
"linux-arm64": "bun build cli.ts --compile --
|
|
48
|
-
"mac-x64": "bun build cli.ts --compile --
|
|
49
|
-
"mac-arm64": "bun build cli.ts --compile --
|
|
50
|
-
"windows-x64": "bun build cli.ts --compile --
|
|
51
|
-
"windows-arm64": "bun build cli.ts --compile --
|
|
46
|
+
"linux-x64": "bun build cli.ts --compile --minify --target=bun-linux-x64 --outfile build/appwrite-cli-linux-x64",
|
|
47
|
+
"linux-arm64": "bun build cli.ts --compile --minify --target=bun-linux-arm64 --outfile build/appwrite-cli-linux-arm64",
|
|
48
|
+
"mac-x64": "bun build cli.ts --compile --minify --target=bun-darwin-x64 --outfile build/appwrite-cli-darwin-x64",
|
|
49
|
+
"mac-arm64": "bun build cli.ts --compile --minify --target=bun-darwin-arm64 --outfile build/appwrite-cli-darwin-arm64",
|
|
50
|
+
"windows-x64": "bun build cli.ts --compile --minify --target=bun-windows-x64 --outfile build/appwrite-cli-win-x64.exe",
|
|
51
|
+
"windows-arm64": "bun build cli.ts --compile --minify --target=bun-windows-arm64 --outfile build/appwrite-cli-win-arm64.exe"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@appwrite.io/console": "^15.0.0",
|