UNPKG

locatai-ts

Version:

Enterprise-grade AI-powered element locator for Selenium WebDriver - TypeScript implementation

76 lines (75 loc) 2.02 kB
{ "name": "locatai-ts", "version": "0.1.0", "description": "Enterprise-grade AI-powered element locator for Selenium WebDriver - TypeScript implementation", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*", "README.md", "LICENSE" ], "scripts": { "clean": "rimraf dist", "build": "tsc", "prepare": "npm run clean && npm run build", "test": "mocha -r ts-node/register 'test/**/*.test.ts'", "lint": "eslint src/**/*.ts", "format": "prettier --write \"src/**/*.ts\"" }, "keywords": [ "selenium", "webdriver", "testing", "automation", "ai", "locator", "openai", "google-generative-ai", "anthropic", "ollama", "typescript" ], "author": "Divyarajsinh-Dodia <divyarajsinh.dodia@outlook.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Divyarajsinh-Dodia/LocatAI.NET" }, "bugs": { "url": "https://github.com/Divyarajsinh-Dodia/LocatAI.NET" }, "homepage": "https://github.com/Divyarajsinh-Dodia/LocatAI.NET#readme", "dependencies": { "@anthropic-ai/sdk": "^0.39.0", "@google/generative-ai": "^0.24.0", "node-fetch": "^3.3.2", "ollama": "^0.5.15", "openai": "^4.95.1", "selenium-webdriver": "^4.0.0" }, "peerDependencies": { "selenium-webdriver": "^4.0.0" }, "devDependencies": { "@types/chai": "^4.3.11", "@types/mocha": "^10.0.6", "@types/node": "^20.11.30", "@types/selenium-webdriver": "^4.1.22", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "chai": "^4.3.10", "chromedriver": "^135.0.2", "dotenv": "^16.5.0", "eslint": "^8.57.1", "eslint-config-prettier": "^9.1.0", "mocha": "^10.3.0", "prettier": "^3.5.3", "rimraf": "^5.0.10", "ts-node": "^10.9.2", "typescript": "^5.4.2" }, "engines": { "node": ">=16.0.0" } }