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)
89 lines
3.2 KiB
JSON
89 lines
3.2 KiB
JSON
{
|
|
"name": "sucrase",
|
|
"version": "3.35.1",
|
|
"description": "Super-fast alternative to Babel for when you can target modern JS runtimes",
|
|
"author": "Alan Pierce <alangpierce@gmail.com>",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"types": "dist/types/index.d.ts",
|
|
"bin": {
|
|
"sucrase": "./bin/sucrase",
|
|
"sucrase-node": "./bin/sucrase-node"
|
|
},
|
|
"scripts": {
|
|
"build": "sucrase-node script/build.ts",
|
|
"fast-build": "sucrase-node script/build.ts --fast",
|
|
"clean": "rm -rf ./build ./dist ./dist-self-build ./dist-types ./example-runner/example-repos ./spec-compliance-tests/test262/test262-checkout ./spec-compliance-tests/babel-tests/babel-tests-checkout",
|
|
"generate": "sucrase-node generator/generate.ts",
|
|
"benchmark": "cd benchmark && yarn && sucrase-node ./benchmark.ts",
|
|
"benchmark-compare": "sucrase-node ./benchmark/compare-performance.ts",
|
|
"microbenchmark": "sucrase-node benchmark/microbenchmark.ts",
|
|
"lint": "sucrase-node script/lint.ts",
|
|
"lint-fix": "sucrase-node script/lint.ts --fix",
|
|
"profile": "node --inspect-brk ./node_modules/.bin/sucrase-node ./benchmark/profile",
|
|
"profile-project": "node --inspect-brk ./node_modules/.bin/sucrase-node ./benchmark/benchmark-project.ts --profile",
|
|
"prepublishOnly": "yarn clean && yarn build",
|
|
"release": "sucrase-node script/release.ts",
|
|
"run-examples": "sucrase-node example-runner/example-runner.ts",
|
|
"test": "yarn lint && yarn test-only",
|
|
"test-only": "mocha './test/**/*.ts'",
|
|
"integration-test": "cd integration-test && yarn && yarn link @sucrase/jest-plugin && mocha --timeout 10000 ./integration-tests.ts",
|
|
"test262": "sucrase-node spec-compliance-tests/test262/run-test262.ts",
|
|
"check-babel-tests": "sucrase-node spec-compliance-tests/babel-tests/check-babel-tests.ts",
|
|
"test-with-coverage": "nyc mocha './test/**/*.ts'",
|
|
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/alangpierce/sucrase.git"
|
|
},
|
|
"keywords": [
|
|
"babel",
|
|
"jsx",
|
|
"typescript",
|
|
"flow"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/alangpierce/sucrase/issues"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.22.5",
|
|
"@jridgewell/trace-mapping": "^0.3.18",
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/mz": "^2.7.4",
|
|
"@types/node": "^20.3.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.60.1",
|
|
"@typescript-eslint/parser": "^5.60.1",
|
|
"chalk": "^4",
|
|
"codecov": "^3.8.3",
|
|
"eslint": "^8.43.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-import": "~2.26",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"mocha": "^10.2.0",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.8.8",
|
|
"sucrase": "^3.35.0",
|
|
"test262-harness": "^10.0.0",
|
|
"ts-interface-builder": "^0.3.3",
|
|
"typescript": "~5.0"
|
|
},
|
|
"dependencies": {
|
|
"@jridgewell/gen-mapping": "^0.3.2",
|
|
"commander": "^4.0.0",
|
|
"lines-and-columns": "^1.1.6",
|
|
"mz": "^2.7.0",
|
|
"pirates": "^4.0.1",
|
|
"tinyglobby": "^0.2.11",
|
|
"ts-interface-checker": "^0.1.9"
|
|
},
|
|
"engines": {
|
|
"node": ">=16 || 14 >=14.17"
|
|
},
|
|
"resolutions": {
|
|
"**/eshost/socket.io": "4.7.0"
|
|
}
|
|
}
|