UNPKG

@labnex/cli

Version:

CLI for Labnex, an AI-Powered Testing Automation Platform

88 lines (87 loc) 2.2 kB
{ "name": "@labnex/cli", "version": "1.4.0", "description": "CLI for Labnex, an AI-Powered Testing Automation Platform", "main": "dist/index.js", "bin": { "labnex": "dist/index.js" }, "scripts": { "build": "tsc --build --force", "dev": "ts-node src/index.ts", "start": "node dist/index.js", "test": "jest", "lint": "eslint . --ext .ts", "format": "prettier --write \"src/**/*.ts\"", "prepublishOnly": "npm run build", "release": "npm run build && npm publish --access public", "verify": "node verify-cli.js" }, "keywords": [ "testing", "automation", "cli", "ai", "labnex", "browser-automation", "test-automation", "puppeteer", "ai-testing" ], "author": "Labnex Team", "license": "MIT", "dependencies": { "@labnex/executor": "*", "axios": "^1.7.2", "boxen": "^5.1.2", "chalk": "^4.1.2", "cli-table3": "^0.6.3", "commander": "^11.1.0", "dotenv": "^16.5.0", "figlet": "^1.7.0", "inquirer": "^8.2.6", "open": "^9.1.0", "ora": "^5.4.1", "playwright": "^1.40.1", "playwright-extra": "^4.3.6", "puppeteer": "^24.9.0", "puppeteer-extra-plugin-stealth": "^2.11.2", "ws": "^8.16.0" }, "devDependencies": { "@types/figlet": "^1.5.8", "@types/inquirer": "^8.2.10", "@types/jest": "^29.5.14", "@types/node": "^18.15.11", "@types/ws": "^8.5.10", "@typescript-eslint/eslint-plugin": "^5.57.1", "@typescript-eslint/parser": "^5.57.1", "eslint": "^8.37.0", "jest": "^29.5.0", "prettier": "^2.8.7", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", "typescript": "^5.0.3" }, "files": [ "dist/**/*", "README.md", "VERIFY.md", "verify-cli.js" ], "engines": { "node": ">=16.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/LabnexDev/Labnex.git", "directory": "packages/cli" }, "homepage": "https://labnexdev.github.io/Labnex", "bugs": { "url": "https://github.com/LabnexDev/Labnex/issues" }, "publishConfig": { "access": "public" } }