-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.48 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@singularit/multiselect",
"type": "module",
"version": "0.0.0",
"private": false,
"author": "singularIT GmbH",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/singularit-de/multiselect.git"
},
"bugs": {
"url": "https://github.com/singularit-de/multiselect/issues"
},
"exports": {
".": {
"require": "./dist/multiselect.umd.cjs",
"import": "./dist/multiselect.js"
},
"./dist/style.css": "./dist/style.css"
},
"main": "dist/multiselect.umd.cjs",
"module": "dist/multiselect.js",
"types": "types",
"files": [
"dist",
"types/**/*.d.ts",
"*.md",
"src",
"!src/tests",
"!src/stories"
],
"scripts": {
"dev": "vite",
"webtypes": "vue-docgen-web-types --configFile web-types.config.js",
"build": "vite build",
"postbuild": "vue-tsc -p tsconfig.build-dts.json",
"preview": "vite preview",
"cypress:open": "cypress open --component",
"cypress:run": "cypress run --component --browser edge",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@vueuse/core": "^11.1.0",
"lodash": "^4.17.21",
"vue": "^3.5",
"vueuc": "^0.4.58"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@chromatic-com/storybook": "^1.9.0",
"@cypress/vite-dev-server": "^5.0.7",
"@cypress/vue": "^6.0.0",
"@mdx-js/react": "^3.0.0",
"@singularit/eslint-config-vue": "^1.2.0",
"@storybook/addon-actions": "^8.3.0",
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-interactions": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/test": "^8.3.0",
"@storybook/vue3": "^8.3.0",
"@storybook/vue3-vite": "^8.3.0",
"@vitejs/plugin-vue": "^5.0.3",
"autoprefixer": "^10.4.7",
"babel-loader": "^9.1.3",
"cypress": "^13.6.3",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"gh-pages": "^6.1.1",
"postcss": "^8.4.13",
"storybook": "^8.3.0",
"tailwindcss": "^3.0.24",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-plugin-libcss": "^1.0.5",
"vue-docgen-web-types": "^0.1.8",
"vue-loader": "^17.4.2",
"vue-tsc": "^2.1.6"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
],
"npmPublish": true
},
"publishConfig": {
"access": "public"
},
"web-types": "./web-types.json"
}