@vant/area-data 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/package.json +10 -17
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vant/area-data",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Vant 省市区数据",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
10
11
|
"import": "./dist/index.esm.mjs",
|
|
11
12
|
"require": "./dist/index.cjs.js"
|
|
12
13
|
}
|
|
@@ -15,15 +16,6 @@
|
|
|
15
16
|
"files": [
|
|
16
17
|
"dist"
|
|
17
18
|
],
|
|
18
|
-
"scripts": {
|
|
19
|
-
"clean": "rimraf ./dist",
|
|
20
|
-
"dev": "node ./build.js -w",
|
|
21
|
-
"build:types": "tsc -p ./tsconfig.json --emitDeclarationOnly",
|
|
22
|
-
"build:bundle": "node ./build.js",
|
|
23
|
-
"build": "pnpm clean && pnpm build:bundle && pnpm build:types",
|
|
24
|
-
"release": "pnpm build && release-it",
|
|
25
|
-
"prepare": "pnpm build"
|
|
26
|
-
},
|
|
27
19
|
"publishConfig": {
|
|
28
20
|
"access": "public",
|
|
29
21
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -38,14 +30,15 @@
|
|
|
38
30
|
"license": "MIT",
|
|
39
31
|
"devDependencies": {
|
|
40
32
|
"esbuild": "^0.18.11",
|
|
41
|
-
"release-it": "^16.1.3",
|
|
42
33
|
"rimraf": "^5.0.0",
|
|
43
34
|
"typescript": "^5.0.4"
|
|
44
35
|
},
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
36
|
+
"scripts": {
|
|
37
|
+
"clean": "rimraf ./dist",
|
|
38
|
+
"dev": "node ./build.js -w",
|
|
39
|
+
"build:types": "tsc -p ./tsconfig.json --emitDeclarationOnly",
|
|
40
|
+
"build:bundle": "node ./build.js",
|
|
41
|
+
"build": "pnpm clean && pnpm build:bundle && pnpm build:types",
|
|
42
|
+
"release": "vant-cli release"
|
|
50
43
|
}
|
|
51
|
-
}
|
|
44
|
+
}
|