UNPKG

@puberty-labs/clits

Version:

CLiTS (Chrome Logging and Inspection Tool Suite) is a powerful Node.js library for AI-controlled Chrome browser automation, testing, and inspection. Features enhanced CSS selector support (:contains(), XPath), dry-run mode, element discovery tools, and co

121 lines (120 loc) 3.35 kB
{ "name": "@puberty-labs/clits", "version": "1.3.4", "description": "CLiTS (Chrome Logging and Inspection Tool Suite) is a powerful Node.js library for AI-controlled Chrome browser automation, testing, and inspection. Features enhanced CSS selector support (:contains(), XPath), dry-run mode, element discovery tools, and comprehensive logging for AI development workflows.", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "logo": "https://raw.githubusercontent.com/Jason-Vaughan/CLiTS/refs/heads/main/assets/logo.png", "repository": { "type": "git", "url": "git+https://github.com/Jason-Vaughan/CLiTS.git" }, "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" }, "./cli": { "import": "./dist/cli.js" } }, "bin": { "clits": "dist/cli.js", "clits-inspect": "dist/cli-inspect.js" }, "files": [ "dist/**/*.js", "dist/**/*.d.ts", "!dist/**/*.test.js", "!dist/**/*.test.d.ts", "!dist/**/__tests__/**", "README.md", "LICENSE", "CHANGELOG.md", "assets/logo.png", "docs/AI_INTEGRATION.md", "docs/ERROR_CODES.md", "docs/AI_EXAMPLES.md", "docs/CLOUDFLARE_WORKAROUND.md", "docs/CLOUDFLARE_QUICK_REFERENCE.md", "docs/AUTOMATION_SCRIPT_FORMAT.md", "docs/UPGRADE_GUIDE.md" ], "scripts": { "build": "tsc", "start": "node dist/cli.js", "dev": "node --loader ts-node/esm src/cli.ts", "lint": "eslint . --ext .ts,.tsx", "lint:fix": "eslint src --ext .ts --fix", "prepare": "npm run build", "prepublishOnly": "npm run lint", "test": "vitest", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "docs:generate": "typedoc" }, "keywords": [ "ai-automation", "chrome-debugging", "zero-interaction", "json-api", "browser-automation", "element-detection", "ai-assistant", "devtools", "log-collection", "headless-chrome", "web-testing", "debugging", "chrome-devtools-protocol", "automation-framework", "cli", "ai", "testing" ], "author": "Jason Vaughan", "license": "MIT", "bugs": { "url": "https://github.com/Jason-Vaughan/CLiTS/issues" }, "engines": { "node": ">=20" }, "devDependencies": { "@puberty-labs/clits": "^1.0.4-beta.0", "@types/chrome-remote-interface": "^0.31.7", "@types/inquirer": "^9.0.8", "@types/node": "^20.11.0", "@types/node-fetch": "^2.6.12", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", "@vitest/coverage-v8": "^1.2.1", "@vitest/ui": "^1.2.1", "eslint": "^8.57.0", "rollup": "^4.12.0", "ts-node": "^10.9.2", "typedoc": "^0.28.5", "typedoc-plugin-markdown": "^4.6.4", "typescript": "^5.3.3", "vitest": "^1.6.1" }, "dependencies": { "@types/react": "^19.1.6", "@types/react-dom": "^19.1.6", "@types/tabtab": "^3.0.4", "chalk": "^5.4.1", "chrome-remote-interface": "^0.33.3", "commander": "^12.0.0", "fast-glob": "^3.3.3", "glob": "^11.0.2", "inquirer": "^9.3.7", "node-fetch": "^3.3.2", "ora": "^8.2.0", "react": "^19.1.0", "react-dom": "^19.1.0", "tabtab": "^3.0.2", "winston": "^3.17.0", "winston-daily-rotate-file": "^5.0.0" } }