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

76 lines
2.0 KiB
JSON

{
"name": "@midscene/visualizer",
"version": "0.17.1",
"repository": "https://github.com/web-infra-dev/midscene",
"homepage": "https://midscenejs.com/",
"types": "./dist/types/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/es/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
},
"./index.css": {
"default": "./dist/index.css"
}
},
"files": ["dist", "html", "README.md"],
"watch": {
"build": {
"patterns": ["src"],
"extensions": "tsx,less,scss,css,js,jsx,ts",
"quiet": false
}
},
"scripts": {
"dev": "npm run build && npx npm-watch",
"build": "modern build ",
"build:watch": "modern build -w",
"serve": "http-server ./dist/ -p 3000",
"new": "modern new",
"upgrade": "modern upgrade"
},
"peerDependencies": {
"react": "18.3.1",
"react-dom": ">=19.1.0"
},
"devDependencies": {
"@modern-js/module-tools": "2.60.6",
"@modern-js/plugin-module-doc": "^2.33.1",
"@modern-js/plugin-module-node-polyfill": "2.60.6",
"@modern-js/runtime": "2.60.6",
"@pixi/unsafe-eval": "7.4.2",
"@types/chrome": "0.0.279",
"@types/node": "^18.0.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"execa": "9.3.0",
"http-server": "14.1.1",
"npm-watch": "0.13.0",
"pixi-filters": "6.0.5",
"pixi.js": "8.1.1",
"query-string": "9.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-resizable-panels": "2.0.22",
"rimraf": "~3.0.2",
"tsx": "4.19.2",
"typescript": "^5.8.3",
"zustand": "4.5.2"
},
"sideEffects": ["**/*.css", "**/*.less", "**/*.sass", "**/*.scss"],
"publishConfig": {
"access": "public"
},
"dependencies": {
"buffer": "6.0.3",
"@ant-design/icons": "^5.3.1",
"@midscene/core": "workspace:*",
"@midscene/shared": "workspace:*",
"@midscene/web": "workspace:*",
"antd": "^5.21.6",
"dayjs": "^1.11.11"
}
}