-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.32 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-selectable-items",
"version": "1.0.1",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"license": "MIT",
"repository": {
"url": "git+https://github.com/kadiryazici/vue-selectable-items.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/kadiryazici/vue-selectable-items/issues"
},
"homepage": "https://github.com/kadiryazici/vue-selectable-items#readme",
"keywords": [
"vue dropdown",
"vue select",
"vue combobox"
],
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"build-dev": "vite build --mode staging",
"preview": "vite preview --port 4173",
"test-watch": "vitest watch --environment jsdom",
"test": "vitest run",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.7",
"@rushstack/eslint-patch": "^1.1.4",
"@types/jsdom": "^20.0.0",
"@types/node": "^16.11.47",
"@vitejs/plugin-vue": "^3.1.2",
"@vitejs/plugin-vue-jsx": "^2.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.2",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.21.0",
"eslint-plugin-vue": "^9.3.0",
"happy-dom": "^7.6.0",
"hotkeys-js": "^3.9.5",
"jsdom": "^20.0.0",
"nanoid": "^4.0.0",
"node-html-parser": "^5.4.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"postcss-scss": "^4.0.4",
"prettier": "^2.7.1",
"sass": "^1.54.8",
"stylelint": "^14.11.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"typescript": "4.8.4",
"unplugin-icons": "^0.14.9",
"vite": "^3.0.4",
"vite-plugin-dts": "^1.4.1",
"vitest": "^0.21.1",
"vue": "^3.2.38",
"vue-selectable-items": "file:",
"vue-tsc": "^1.0.9",
"wowerlay": "^0.7.0"
},
"peerDependencies": {
"vue": "^3.2.38"
}
}