Files
page-agent/packages/core/package.json
T

67 lines
1.9 KiB
JSON
Raw Normal View History

{
2026-01-20 14:08:42 +08:00
"name": "@page-agent/core",
"private": false,
2026-05-11 19:40:30 +08:00
"version": "1.8.2",
2026-01-20 14:08:42 +08:00
"type": "module",
"main": "./src/PageAgentCore.ts",
"types": "./src/PageAgentCore.ts",
2026-01-20 14:08:42 +08:00
"exports": {
".": {
"types": "./src/PageAgentCore.ts",
"default": "./src/PageAgentCore.ts"
}
},
"publishConfig": {
"main": "./dist/esm/page-agent-core.js",
"module": "./dist/esm/page-agent-core.js",
"types": "./dist/esm/PageAgentCore.d.ts",
"exports": {
".": {
"types": "./dist/esm/PageAgentCore.d.ts",
"import": "./dist/esm/page-agent-core.js",
"default": "./dist/esm/page-agent-core.js"
}
2026-01-20 14:08:42 +08:00
}
},
"files": [
"dist/"
],
"description": "GUI agent for web applications - add intelligent automation to any webpage with a single script",
"keywords": [
"ai",
"automation",
"ui-agent",
"GUI-agent",
"browser-automation",
"web-agent",
"llm",
"dom-interaction",
"web-automation",
"GUI-simulation"
],
"author": "Simon<gaomeng1900>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alibaba/page-agent.git"
},
"homepage": "https://alibaba.github.io/page-agent/",
"scripts": {
"build": "vite build",
"dev:iife": "concurrently \"vite build --config vite.iife.config.js --watch\" \"npx serve dist/iife -p 5174\"",
2026-04-12 03:16:13 +08:00
"prepublishOnly": "node ../../scripts/pre-publish.js",
"postpublish": "node ../../scripts/post-publish.js"
2026-01-20 14:08:42 +08:00
},
"dependencies": {
"chalk": "^5.6.2",
2026-05-11 19:40:30 +08:00
"@page-agent/llms": "1.8.2",
"@page-agent/page-controller": "1.8.2"
2026-03-05 19:13:18 +08:00
},
"peerDependencies": {
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
2026-05-11 17:19:23 +08:00
"zod": "^4.4.3"
2026-01-20 14:08:42 +08:00
}
}