-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
128 lines (128 loc) · 3.57 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@antv/l7-editor",
"version": "1.1.13",
"description": "Geographic data editing tool based on L7",
"files": [
"lib",
"es"
],
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"license": "MIT",
"scripts": {
"start": "dumi dev",
"build": "father build",
"i18n:collect": "kiwi --extract src",
"lint": "run-p lint:*",
"lint:ts": "eslint src --ext .ts,.tsx --ignore-pattern 'src/**/demos/'",
"lint-fix": "eslint src --fix --ext .ts,.tsx --format=pretty",
"prettier": "prettier --write 'src/**.{tsx,ts,md,json}'",
"clean": "rimraf es lib dist umd",
"format": "prettier --cache --write .",
"prepare": "dumi setup",
"ci": "run-s lint doctor build",
"setup": "dumi setup",
"doctor": "father doctor",
"docs:build": "dumi build",
"docs:build-analyze": "ANALYZE=1 dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm publish"
},
"dependencies": {
"@ant-design/icons": "^4.8.0",
"@antv/l7-draw": "^3.0.21",
"@antv/larkmap": "^1.4.4",
"@antv/sam": "^0.1.0",
"@emotion/css": "^11.11.2",
"@mapbox/togeojson": "^0.16.0",
"@turf/turf": "^6.5.0",
"ahooks": "^3.7.0",
"classnames": "^2.3.2",
"clipboard": "^2.0.11",
"color": "^4.2.3",
"dayjs": "^1.11.7",
"gcoord": "^1.0.5",
"i18next": "^23.4.6",
"i18next-browser-languagedetector": "^7.1.0",
"kiwi-intl": "^1.2.6-beta.0",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"monaco-editor": "^0.34.1",
"monaco-editor-webpack-plugin": "^7.0.1",
"npyjs": "^0.5.0",
"onnxruntime-web": "^1.15.1",
"papaparse": "^5.4.1",
"prettier": "^2.7.1",
"re-resizable": "^6.9.9",
"react-i18next": "^13.2.2",
"react-monaco-editor": "^0.49.0",
"recoil": "^0.7.7",
"tokml": "^0.4.0",
"variable-type": "^1.0.0",
"wellknown": "^0.5.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@antv/l7": "^2.11.0",
"@babel/runtime": "^7.22.10",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/classnames": "^2.3.1",
"@types/color": "^3.0.3",
"@types/lodash": "^4.14.182",
"@types/lodash-es": "^4.17.8",
"@types/prettier": "^2.7.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/type-check": "^0.3.27",
"@types/wellknown": "^0.5.5",
"@umijs/fabric": "^4.0.1",
"ajv": "^8.12.0",
"antd": "^5.8.3",
"copy-webpack-plugin": "^11.0.0",
"dumi": "^2.2.1",
"eslint-plugin-i18next": "^6.0.3",
"eslint-plugin-import": "^2.28.0",
"father": "^4.2.3",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"typescript": "^4.1.2",
"webpack-bundle-analyzer": "^4.9.0"
},
"peerDependencies": {
"@antv/l7": ">=2.0.0",
"antd": ">=5.0.0",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"lint-staged": {
"*.less": "stylelint --fix",
"*.{ts,tsx}": "eslint --fix",
"*.{ts,tsx,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"author": {
"name": "AntV",
"url": "https://antv.antgroup.com"
},
"homepage": "https://l7editor.antv.antgroup.com",
"repository": {
"type": "git",
"url": "https://github.com/antvis/L7Editor"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/antvis/L7Editor/issues"
}
}