-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.19 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.19 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
{
"name": "vue-dadata",
"version": "3.0.4",
"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 <ikloster@yandex.ru>",
"type": "module",
"exports": {
".": {
"import": "./dist/vue-dadata.js",
"require": "./dist/vue-dadata.umd.js"
},
"./*": "./*"
},
"main": "./dist/vue-dadata.umd.js",
"jsdelivr": "./dist/vue-dadata.umd.js",
"unpkg": "./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",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src --ext .ts,.vue --fix --ignore-path .gitignore --fix src",
"lint:check": "eslint src --ext .ts,.vue --ignore-path .gitignore",
"playwright:ci": "playwright test --project=chromium",
"playwright:dev": "playwright test --headed --project=chromium",
"serve:docs": "vitepress serve docs",
"sort": "npx sort-package-json",
"test:dev": "vitest",
"test:prod": "vitest run",
"typecheck": "vue-tsc --noEmit",
"version:major": "pnpm version major && git push && git push --tags",
"version:minor": "pnpm version minor && git push && git push --tags",
"version:patch": "pnpm version patch && git push && git push --tags",
"version:premajor": "pnpm version premajor && git push && git push --tags",
"version:preminor": "pnpm version preminor && git push && git push --tags",
"version:prepatch": "pnpm version prepatch && git push && git push --tags",
"version:prerelease": "pnpm version prerelease && git push && git push --tags"
},
"dependencies": {
"axios": "1.10.0",
"vue-debounce": "5.0.1",
"vue-word-highlighter": "1.2.5"
},
"devDependencies": {
"@playwright/test": "^1.54.1",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"@vitejs/plugin-vue": "6.0.0",
"@vitest/coverage-istanbul": "3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"@vue/compiler-sfc": "3.5.17",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "2.4.6",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-vue": "^9.33.0",
"happy-dom": "18.0.1",
"playwright": "^1.54.1",
"prettier": "^3.6.2",
"rollup-plugin-visualizer": "^6.0.3",
"typescript": "5.8.3",
"vite": "7.0.4",
"vite-plugin-dts": "4.5.4",
"vitepress": "1.6.3",
"vitest": "3.2.4",
"vue-tsc": "3.0.1"
},
"peerDependencies": {
"vue": "^3"
},
"engines": {
"node": ">=20"
}
}