Major changes: - New frontend (platform/web/): Vite + React 18 + TypeScript + Tailwind - 4-module navigation: 数据送标 / 模型管理 / 车队管理 / 系统管理 - Data catalog with charts (DMS/ADAS/Lane 3-tab view) - Quality review workflow (标注质检): Good/Fine/Bad scoring with auto-advance - Audit enhancements: batch operations, rejection categories, Feishu notifications - Operation audit log (操作日志) - World model simulation studio (仿真工坊) - Dataset version management with snapshots and diff - ADAS 7-class dataset integration (138K images organized + compressed) - User management with Feishu integration and pagination - CRUD/search/filter on all pages, card layout redesign - PIL-optimized image overlay rendering - Auto-snapshot on build, in_review workflow stage - Removed embedded algorithm code (now in workspace)
83 lines
2.1 KiB
JSON
83 lines
2.1 KiB
JSON
{
|
|
"name": "history",
|
|
"version": "4.10.1",
|
|
"description": "Manage session history with JavaScript",
|
|
"repository": "ReactTraining/history",
|
|
"license": "MIT",
|
|
"author": "Michael Jackson",
|
|
"main": "index.js",
|
|
"module": "esm/history.js",
|
|
"unpkg": "umd/history.js",
|
|
"files": [
|
|
"DOMUtils.js",
|
|
"ExecutionEnvironment.js",
|
|
"LocationUtils.js",
|
|
"PathUtils.js",
|
|
"cjs",
|
|
"createBrowserHistory.js",
|
|
"createHashHistory.js",
|
|
"createMemoryHistory.js",
|
|
"createTransitionManager.js",
|
|
"es",
|
|
"esm",
|
|
"umd",
|
|
"warnAboutDeprecatedCJSRequire.js"
|
|
],
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"clean": "git clean -fdX .",
|
|
"lint": "eslint modules",
|
|
"prepublishOnly": "yarn build",
|
|
"test": "karma start --single-run"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.1.2",
|
|
"loose-envify": "^1.2.0",
|
|
"resolve-pathname": "^3.0.0",
|
|
"tiny-invariant": "^1.0.2",
|
|
"tiny-warning": "^1.0.0",
|
|
"value-equal": "^1.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.1.2",
|
|
"@babel/plugin-transform-object-assign": "^7.0.0",
|
|
"@babel/plugin-transform-runtime": "^7.1.0",
|
|
"@babel/preset-env": "^7.1.0",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-eslint": "^7.0.0",
|
|
"babel-loader": "^8.0.4",
|
|
"babel-plugin-dev-expression": "^0.2.1",
|
|
"eslint": "^3.3.0",
|
|
"eslint-plugin-import": "^2.0.0",
|
|
"expect": "^21.0.0",
|
|
"jest-mock": "^21.0.0",
|
|
"karma": "^3.1.3",
|
|
"karma-browserstack-launcher": "^1.3.0",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-firefox-launcher": "^1.1.0",
|
|
"karma-mocha": "^1.3.0",
|
|
"karma-mocha-reporter": "^2.2.5",
|
|
"karma-sourcemap-loader": "^0.3.7",
|
|
"karma-webpack": "^3.0.5",
|
|
"mocha": "^5.2.0",
|
|
"rollup": "^0.66.6",
|
|
"rollup-plugin-babel": "^4.0.3",
|
|
"rollup-plugin-commonjs": "^9.2.0",
|
|
"rollup-plugin-node-resolve": "^3.4.0",
|
|
"rollup-plugin-replace": "^2.1.0",
|
|
"rollup-plugin-size-snapshot": "^0.7.0",
|
|
"rollup-plugin-uglify": "^6.0.0",
|
|
"webpack": "^3.12.0"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
"loose-envify"
|
|
]
|
|
},
|
|
"keywords": [
|
|
"history",
|
|
"location"
|
|
]
|
|
}
|