-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
76 lines (76 loc) · 1.82 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
{
"name": "v-region",
"description": "Provide Chinese administrative division data selection",
"version": "3.3.0",
"author": "TerryZ <[email protected]>",
"type": "module",
"files": [
"./dist",
"./types"
],
"main": "./dist/v-region.umd.cjs",
"module": "./dist/v-region.js",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/v-region.js"
},
"require": "./dist/v-region.umd.cjs"
}
},
"typings": "./types/index.d.ts",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173",
"test:unit": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"dts": "vue-tsc --declaration --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "https://github.com/TerryZ/v-region.git"
},
"keywords": [
"front-end",
"web",
"vue",
"region",
"city",
"town",
"area",
"selector"
],
"peerDependencies": {
"vue": "^3.2.0"
},
"dependencies": {
"v-dropdown": "^3.0.0",
"vue": "^3.4.31"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.3",
"@vitejs/plugin-vue": "^5.0.5",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"@vitest/coverage-v8": "^2.1.1",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/test-utils": "^2.4.6",
"bootstrap": "^5.3.3",
"eslint": "^8.50.0",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^25.0.0",
"sass": "^1.68.0",
"sass-loader": "^13.3.2",
"postcss": "^8.4.41",
"autoprefixer": "^10.4.20",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vitest": "^2.1.1",
"vue-router": "^4.4.0",
"vue-tsc": "^2.0.26"
}
}