主要功能: - 修改RequirementModal支持12个订单班选择 - 添加OrderClassIconMap图标映射组件 - Store中添加selectedOrderClass状态管理 - WorkflowPage支持传递orderClass参数 - web_result添加URL参数切换功能 - 创建order-class-handler.js动态处理页面主题 技术改进: - 创建软链接关联订单班数据目录 - 生成wenlu.json和food.json数据结构 - 删除重复的web_result目录 - 添加测试页面test-order-class.html 影响范围: - 展会策划系统现支持12个订单班 - 结果展示页面自动适配不同订单班主题 - 用户可选择不同行业生成对应方案 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
68 lines
2.2 KiB
JSON
68 lines
2.2 KiB
JSON
{
|
|
"name": "@jridgewell/trace-mapping",
|
|
"version": "0.3.30",
|
|
"description": "Trace the original position through a source map",
|
|
"keywords": [
|
|
"source",
|
|
"map"
|
|
],
|
|
"main": "dist/trace-mapping.umd.js",
|
|
"module": "dist/trace-mapping.mjs",
|
|
"types": "types/trace-mapping.d.cts",
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"types"
|
|
],
|
|
"exports": {
|
|
".": [
|
|
{
|
|
"import": {
|
|
"types": "./types/trace-mapping.d.mts",
|
|
"default": "./dist/trace-mapping.mjs"
|
|
},
|
|
"default": {
|
|
"types": "./types/trace-mapping.d.cts",
|
|
"default": "./dist/trace-mapping.umd.js"
|
|
}
|
|
},
|
|
"./dist/trace-mapping.umd.js"
|
|
],
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"benchmark": "run-s build:code benchmark:*",
|
|
"benchmark:install": "cd benchmark && npm install",
|
|
"benchmark:only": "node --expose-gc benchmark/index.js",
|
|
"build": "run-s -n build:code build:types",
|
|
"build:code": "node ../../esbuild.mjs trace-mapping.ts",
|
|
"build:types": "run-s build:types:force build:types:emit build:types:mts",
|
|
"build:types:force": "rimraf tsconfig.build.tsbuildinfo",
|
|
"build:types:emit": "tsc --project tsconfig.build.json",
|
|
"build:types:mts": "node ../../mts-types.mjs",
|
|
"clean": "run-s -n clean:code clean:types",
|
|
"clean:code": "tsc --build --clean tsconfig.build.json",
|
|
"clean:types": "rimraf dist types",
|
|
"test": "run-s -n test:types test:only test:format",
|
|
"test:format": "prettier --check '{src,test}/**/*.ts'",
|
|
"test:only": "mocha",
|
|
"test:types": "eslint '{src,test}/**/*.ts'",
|
|
"lint": "run-s -n lint:types lint:format",
|
|
"lint:format": "npm run test:format -- --write",
|
|
"lint:types": "npm run test:types -- --fix",
|
|
"prepublishOnly": "npm run-s -n build test"
|
|
},
|
|
"homepage": "https://github.com/jridgewell/sourcemaps/tree/main/packages/trace-mapping",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jridgewell/sourcemaps.git",
|
|
"directory": "packages/trace-mapping"
|
|
},
|
|
"author": "Justin Ridgewell <justin@ridgewell.name>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@jridgewell/resolve-uri": "^3.1.0",
|
|
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
}
|
|
}
|