appwrite-utils-cli
Version:
Appwrite Utility Functions to help with database management, data conversion, data import, migrations, and much more. Meant to be used as a CLI tool, I do not recommend installing this in frontend environments.
63 lines (62 loc) • 1.78 kB
JSON
{
"name": "appwrite-utils-cli",
"description": "Appwrite Utility Functions to help with database management, data conversion, data import, migrations, and much more. Meant to be used as a CLI tool, I do not recommend installing this in frontend environments.",
"version": "1.2.29",
"main": "src/main.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/zachhandley/AppwriteUtils"
},
"author": "Zach Handley <zach@blackleafdigital.com> (https://zachhandley.com)",
"keywords": [
"appwrite",
"cli",
"utils",
"migrations",
"data",
"database",
"import",
"migration",
"utility"
],
"bin": {
"appwrite-migrate": "./dist/main.js"
},
"scripts": {
"build": "bun run tsc",
"start": "tsx --no-cache src/main.ts",
"deploy": "bun run build && npm publish --access public",
"postinstall": "echo 'This package is intended for CLI use only and should not be added as a dependency in other projects.'"
},
"dependencies": {
"@types/inquirer": "^9.0.8",
"@types/json-schema": "^7.0.15",
"@types/yargs": "^17.0.33",
"appwrite-utils": "^1.2.1",
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"es-toolkit": "^1.39.4",
"ignore": "^6.0.2",
"inquirer": "^9.3.7",
"js-yaml": "^4.1.0",
"luxon": "^3.6.1",
"nanostores": "^0.10.3",
"node-appwrite": "^16",
"p-limit": "^6.2.0",
"tar": "^7.4.3",
"tsx": "^4.20.3",
"ulidx": "^2.4.1",
"winston": "^3.17.0",
"yargs": "^18.0.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.18",
"@types/luxon": "^3.6.2",
"typescript": "^5.8.3"
}
}