midscene/packages/cli/package.json
zhouxiao.shaw 4de7fd81f7 feat(record): improve session management and code quality
- Optimize session creation to use timestamp naming by default without requiring modal input
     - Improve UI layout to display titles and descriptions more effectively in both list and
     detail views
     - Apply code formatting improvements across the codebase for better readability
     - Fix linting issues in scripts and component files
2025-06-01 11:30:06 +08:00

56 lines
1.6 KiB
JSON

{
"name": "@midscene/cli",
"description": "An AI-powered automation SDK can control the page, perform assertions, and extract data in JSON format using natural language. See https://midscenejs.com/ for details.",
"version": "0.17.1",
"repository": "https://github.com/web-infra-dev/midscene",
"homepage": "https://midscenejs.com/",
"jsnext:source": "./src/index.ts",
"main": "./dist/lib/index.js",
"bin": {
"midscene": "./bin/midscene"
},
"files": ["dist", "README.md", "bin"],
"scripts": {
"dev": "modern dev",
"build": "modern build",
"build:watch": "modern build -w",
"new": "modern new",
"upgrade": "modern upgrade",
"test": "vitest --run",
"test:ai": "AITEST=true vitest --run",
"test:ai:temp": "AITEST=true BRIDGE_MODE=true vitest tests/bridge.test.ts"
},
"dependencies": {
"@midscene/android": "workspace:*",
"@midscene/core": "workspace:*",
"@midscene/web": "workspace:*",
"puppeteer": "24.2.0",
"http-server": "14.1.1"
},
"devDependencies": {
"@modern-js/module-tools": "2.60.6",
"@types/js-yaml": "4.0.9",
"@types/minimist": "1.2.5",
"@types/node": "^18.0.0",
"@types/yargs": "17.0.32",
"typescript": "^5.8.3",
"vitest": "3.0.5",
"yargs": "17.7.2",
"chalk": "4.1.2",
"cli-spinners": "3.2.0",
"dotenv": "16.4.5",
"execa": "9.3.0",
"glob": "11.0.0",
"js-yaml": "4.1.0",
"restore-cursor": "5.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"license": "MIT"
}