-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
84 lines (84 loc) · 2.37 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
{
"name": "vue-dadata",
"version": "3.0.0-beta.13",
"description": "Vue component for hinting addresses using dadata.ru",
"keywords": [
"vue",
"vue3",
"typescript",
"ts",
"dadata",
"hinting addresses"
],
"homepage": "https://github.com/ikloster03/vue-dadata",
"repository": "https://github.com/ikloster03/vue-dadata",
"license": "MIT",
"author": "Ivan Monastyrev <[email protected]>",
"exports": {
".": {
"import": "./dist/vue-dadata.js",
"require": "./dist/vue-dadata.umd.js"
},
"./*": "./*"
},
"main": "./dist/vue-dadata.umd.js",
"unpkg": "./dist/vue-dadata.umd.js",
"jsdelivr": "./dist/vue-dadata.umd.js",
"module": "./dist/vue-dadata.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/*",
"src/**/*.vue"
],
"scripts": {
"analyze": "vite build --config analyze.config.js",
"build": "vite build",
"build:docs": "vitepress build docs",
"coverage": "vitest run --coverage",
"coverage:report": "vite preview --outDir ./coverage",
"dev": "vite --host",
"dev:docs": "vitepress dev docs --port=8081",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore --fix src",
"serve:docs": "vitepress serve docs",
"sort": "npx sort-package-json",
"test:dev": "vitest",
"test:prod": "vitest run",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"axios": "1.3.6",
"vue-debounce": "4.0.0",
"vue-word-highlighter": "1.2.3"
},
"devDependencies": {
"@rushstack/eslint-patch": "1.2.0",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"@vitejs/plugin-vue": "4.1.0",
"@vitest/coverage-c8": "0.29.3",
"@vitest/coverage-istanbul": "0.29.3",
"@vue/compiler-sfc": "3.2.47",
"@vue/eslint-config-typescript": "11.0.2",
"@vue/test-utils": "2.3.2",
"eslint": "8.39.0",
"eslint-config-airbnb": "19.0.4",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-vue": "9.11.0",
"happy-dom": "8.9.0",
"rollup-plugin-visualizer": "^5.5.4",
"typescript": "5.0.4",
"vite": "4.3.1",
"vite-plugin-dts": "2.3.0",
"vitepress": "1.0.0-alpha.74",
"vitest": "0.29.3",
"vue-tsc": "1.4.4"
},
"peerDependencies": {
"vue": "3.2.47"
},
"engines": {
"node": ">=14"
}
}