-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
167 lines (167 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
167 lines (167 loc) · 3.76 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "chinese-global-compliant-geodata",
"version": "1.0.0",
"description": "Global geographic data package based on China's stance, providing administrative divisions and territories of Chinese provinces/cities/districts/counties, as well as global countries/regions. Supports geographic data in Chinese and relevant regional languages.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.4",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc && node scripts/copy-assets.js",
"prepare": "npm run build",
"minify-geojson": "node scripts/minify-geojson.js",
"format-geojson": "node scripts/format-geojson.js"
},
"keywords": [
"geodata",
"geographic",
"地理数据",
"地理",
"地理信息",
"geojson",
"geospatial",
"地理空间",
"map",
"mapping",
"地图",
"制图",
"中文地图",
"GIS",
"administrative",
"行政",
"行政区划",
"行政边界",
"boundaries",
"边界",
"territories",
"领土",
"provinces",
"省份",
"cities",
"城市",
"districts",
"区",
"counties",
"县",
"global",
"world",
"regions",
"countries",
"全球",
"世界",
"地区",
"国家",
"china",
"chinese",
"中国",
"中华",
"简体中文",
"compliant",
"stance",
"sovereignty",
"合规",
"立场",
"主权",
"china-stance",
"中国立场",
"chinese-languages",
"中文语言",
"汉语",
"multilingual",
"多语言",
"local-languages",
"地方语言",
"geographic-data",
"administrative-divisions",
"china-geodata",
"中国地理数据",
"chinese-geospatial",
"中国地理空间",
"global-mapping",
"全球制图",
"territory-data",
"领土数据",
"provincial-data",
"省级数据",
"city-boundaries",
"城市边界",
"county-administrative",
"县级行政",
"compliant-geodata",
"合规地理数据",
"sovereign-geography",
"主权地理",
"chinese-administrative",
"中国行政",
"global-territories",
"全球领土",
"geographic-boundaries",
"地理边界",
"multilingual-maps",
"多语言地图",
"regional-languages",
"区域语言",
"geodata-compliant",
"地理数据合规",
"administrative-territories",
"行政领土",
"chinese-regions",
"中国地区",
"global-administrative",
"全球行政",
"territory-mapping",
"领土制图",
"city-administrative",
"城市行政",
"county-boundaries",
"县级边界",
"compliant-mapping",
"合规制图",
"sovereign-data",
"主权数据",
"chinese-geography",
"中国地理",
"global-countries",
"全球国家",
"geographic-administrative",
"地理行政",
"multilingual-geodata",
"多语言地理数据",
"regional-geography",
"区域地理",
"echarts",
"mapbox-gl",
"leaflet"
],
"author": "JayMuShui",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JayMuShui/chinese-global-compliant-geodata.git"
},
"bugs": {
"url": "https://github.com/JayMuShui/chinese-global-compliant-geodata/issues"
},
"homepage": "https://github.com/JayMuShui/chinese-global-compliant-geodata#readme",
"dependencies": {
"@types/geojson": "^7946.0.14",
"geojson": "^0.5.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"fs-extra": "^11.2.0",
"prettier": "^3.5.3",
"rimraf": "^5.0.5",
"simplify-js": "^1.2.4",
"typescript": "^5.0.0"
}
}