antv-l7/packages/layers/package.json

61 lines
1.9 KiB
JSON
Raw Normal View History

{
"name": "@antv/l7-layers",
2021-10-25 17:14:40 +08:00
"version": "2.5.39",
"description": "L7's collection of built-in layers",
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"sideEffects": false,
"files": [
"lib",
"es",
"README.md"
],
"scripts": {
"tsc": "tsc --project tsconfig.build.json",
"clean": "rimraf dist; rimraf es; rimraf lib;",
"build": "run-p build:*",
"build:cjs": "BABEL_ENV=cjs babel src --root-mode upward --out-dir lib --source-maps --extensions .ts,.tsx --delete-dir-on-start --no-comments",
"build:esm": "BABEL_ENV=esm babel src --root-mode upward --out-dir es --source-maps --extensions .ts,.tsx --delete-dir-on-start --no-comments",
2020-07-21 12:00:10 +08:00
"watch": "BABEL_ENV=cjs babel src --watch --root-mode upward --out-dir lib --source-maps --extensions .ts,.tsx --delete-dir-on-start --no-comments",
"sync": "tnpm sync"
},
"author": "xiaoiver",
"license": "ISC",
"dependencies": {
Shihui dev (#810) * feat: add getModelMatrix into viewport * feat: 新增地球模式 (初步构建) * feat: 完善地球交互 * style: lint style * feat: 调整地球图层缩放的方向 * style: lint style * feat: 增加地球模式的 pointLayer/fill 图层 * style: lint style * feat: 增加地球、太阳的简单运动系统,优化部分代码结构 * fix: 修复时间点击出错 * style: lint style * fix: 修复地图 panBy 方法参数错误 * style: lint style * feat: pointLayer/cylinder 圆柱兼容地球模式 * style: lint style * feat: 修复 pointLayer/fill 在拾取是破面严重的情况 * style: lint style * feat: 增加 arc 弧度调节 * feat: 增加 lineLayer/arc3d 兼容地球模式 * style: lint style * feat: 增加地球图层 - 大气层 * style: lint style * feat: 增加设置可视化层背景色的能力 * style: lint style * feat: 增加地球外发光效果 * style: lint style * feat: 允许用户不使用 layer 的 source 方法 - 地球模式下光晕图层不需要传数据 * style: lint style * feat: 调整光晕的 shader 计算 * feat: 调整地球大气层的渲染层级 * style: lint style * feat: 调整案例 * style: lint style * feat: 增加地球图层的默认参数、调整部分代码 * style: lint style * feat: imageTile developinging * style: lint style * feat: 新增图片瓦片地图 * fix: 修复 amap2 新增样式导致的 marker 失效 * feat: 修复 amap2 的 amap-maps 新增 z-index=0; 引发的marker 显示层级失效 * feat: amap2 的 amap-maps 新增 z-index=0; 样式,让 marker 中 zIndex 失效 * style: lint style * feat: 补全瓦片地图中的类型引用 * style: lint style * feat: 增加 demo * style: lint style * feat: 修复 varying 传递 float 总数在部分终端设备 ios13 上突破限制的问题 * feat: add stoty demo * style: lint style * feat: 调整 aspace demo * feat: 调整 aspace demo * style: lint style * feat: 调整 demo * feat: 补充依赖
2021-10-25 19:19:59 +08:00
"@antv/geo-coord": "^1.0.8",
2020-02-26 22:23:43 +08:00
"@antv/async-hook": "^2.1.0",
2021-10-25 17:14:40 +08:00
"@antv/l7-core": "^2.5.39",
"@antv/l7-source": "^2.5.39",
"@antv/l7-utils": "^2.5.39",
2019-12-31 19:17:29 +08:00
"@babel/runtime": "^7.7.7",
"@mapbox/martini": "^0.2.0",
"@turf/meta": "^6.0.2",
2020-02-25 20:35:43 +08:00
"d3-array": "1",
"d3-color": "^1.4.0",
2020-02-25 20:35:43 +08:00
"d3-scale": "2",
"earcut": "^2.2.1",
"eventemitter3": "^4.0.0",
"extrude-polyline": "^1.0.6",
"gl-matrix": "^3.1.0",
2019-10-16 10:13:44 +08:00
"gl-vec2": "^1.3.0",
2019-11-01 15:36:20 +08:00
"inversify": "^5.0.1",
"lodash": "^4.17.15",
2019-10-29 17:33:37 +08:00
"merge-json-schemas": "1.0.0",
2019-10-16 10:13:44 +08:00
"polyline-miter-util": "^1.0.1",
2020-02-22 15:10:46 +08:00
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/d3-array": "^2.0.0",
2020-02-05 15:58:44 +08:00
"@types/d3-color": "^1.2.2",
"@types/d3-scale": "^2.1.1",
"@types/earcut": "^2.1.0",
"@types/gl-matrix": "^2.4.5",
"@types/lodash": "^4.14.138"
2019-11-12 16:01:33 +08:00
},
2021-09-14 12:16:41 +08:00
"gitHead": "684ba4eb806a798713496d3fc0b4d1e17517dc31",
"publishConfig": {
"access": "public"
}
}