@agentic-intelligence/dom-engine
Version:
Agentic DOM Intelligence - A lightweight TypeScript library for DOM analysis and manipulation, designed for web automation and AI agents
77 lines (76 loc) • 2.05 kB
JSON
{
"name": "@agentic-intelligence/dom-engine",
"version": "1.2.0-dev.9",
"description": "Agentic DOM Intelligence - A lightweight TypeScript library for DOM analysis and manipulation, designed for web automation and AI agents",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build:watch": "tsc --watch",
"dev": "tsc --watch",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"test": "echo \"No tests specified\" && exit 0",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"dom",
"analysis",
"automation",
"typescript",
"web-scraping",
"ai-agents",
"browser-automation",
"dom-manipulation",
"interactive-elements",
"scroll-management",
"action-execution",
"human-like-interaction",
"click-simulation",
"type-simulation"
],
"author": {
"name": "Luis C",
"email": "ficiencybusiness@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ficiency/Agentic-DOM-Intelligence.git"
},
"bugs": {
"url": "https://github.com/ficiency/Agentic-DOM-Intelligence/issues"
},
"homepage": "https://github.com/ficiency/Agentic-DOM-Intelligence#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"typescript": "^5.3.0",
"rimraf": "^5.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}