@tensorify.io/cli
Version:
Official CLI for Tensorify.io - Build, test, and deploy machine learning plugins
61 lines • 1.47 kB
JSON
{
"name": "@tensorify.io/cli",
"version": "0.0.44",
"description": "Official CLI for Tensorify.io - Build, test, and deploy machine learning plugins",
"main": "lib/index.js",
"bin": {
"tensorify": "lib/cli/src/bin/tensorify.js"
},
"keywords": [
"tensorify",
"machine-learning",
"plugins",
"ai",
"cli"
],
"author": "Tensorify.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tensorify/backend.tensorify.io.git",
"directory": "packages/cli"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@clerk/backend": "^0.38.0",
"@tensorify.io/sdk": "0.0.44",
"axios": "^1.10.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"esbuild": "^0.25.6",
"form-data": "^4.0.3",
"inquirer": "^9.2.12",
"keytar": "^7.9.0",
"node-fetch": "^3.3.2",
"open": "^8.4.2",
"tus-js-client": "^4.3.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@types/node-fetch": "^2.6.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.0",
"@repo/eslint-config": "0.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"dev:test": "pnpm run build && node lib/bin/tensorify.js",
"start": "node lib/bin/tensorify.js",
"test": "jest",
"clean": "rm -rf lib"
}
}