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)
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "tiny-warning",
|
|
"version": "1.0.3",
|
|
"keywords": [
|
|
"warning",
|
|
"warn"
|
|
],
|
|
"description": "A tiny warning function",
|
|
"main": "dist/tiny-warning.cjs.js",
|
|
"module": "dist/tiny-warning.esm.js",
|
|
"types": "src/index.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"/dist",
|
|
"/src"
|
|
],
|
|
"author": "Alex Reardon <alexreardon@gmail.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/alexreardon/tiny-warning.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/alexreardon/tiny-warning/issues"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "yarn jest",
|
|
"lint": "yarn prettier --debug-check src/** test/**",
|
|
"typecheck": "yarn flow",
|
|
"validate": "yarn lint && yarn flow",
|
|
"build:clean": "rimraf dist",
|
|
"build:flow": "echo \"// @flow\n\nexport * from '../src';\" > dist/tiny-warning.cjs.js.flow",
|
|
"build:dist": "yarn rollup --config rollup.config.js",
|
|
"build": "yarn build:clean && yarn build:dist && yarn build:flow",
|
|
"prepublishOnly": "yarn build"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.5.0",
|
|
"@babel/preset-env": "^7.5.0",
|
|
"@babel/preset-flow": "^7.0.0",
|
|
"babel-core": "7.0.0-bridge.0",
|
|
"babel-jest": "^24.8.0",
|
|
"flow-bin": "0.102.0",
|
|
"jest": "^24.8.0",
|
|
"prettier": "1.18.2",
|
|
"regenerator-runtime": "^0.13.2",
|
|
"rimraf": "^2.6.3",
|
|
"rollup": "^1.16.6",
|
|
"rollup-plugin-babel": "^4.3.3",
|
|
"rollup-plugin-replace": "^2.2.0",
|
|
"rollup-plugin-uglify": "^6.0.2"
|
|
}
|
|
}
|