forked from riophae/vue-treeselect
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.97 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
{
"name": "vue-treeselect",
"version": "0.5.2",
"private": false,
"homepage": "https://github.com/infineon/infineon-vue-datable",
"repository": "https://github.com/infineon/infineon-vue-datable",
"description": "Infineon Vue Datatable on Bootstrap basis",
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-treeselect.umd.cjs",
"module": "./dist/vue-treeselect.js",
"exports": {
".": {
"import": "./dist/vue-treeselect.js",
"require": "./dist/vue-treeselect.umd.cjs"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"keywords": [
"vue3",
"bootstrap",
"datatable"
],
"scripts": {
"dev": "vite --config vite.examples.config.js --port 5003",
"build:lib": "vite build --config vite.lib.config.js",
"build:examples": "vite build --config vite.examples.config.js",
"preview": "npm run build:examples && vite preview --port 5003"
},
"author": "Verena Lechner, Kai Werther",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^3.0.0-5",
"@infineon/design-system-bootstrap": "^1.0.4",
"@popperjs/core": "^2.11.6",
"bootstrap": "^5.2.1",
"easings-css": "^2.1.1",
"fuzzysearch": "^1.0.3",
"is-promise": "^4.0.0",
"material-colors": "^1.2.6",
"vue": "^3.2.47",
"vue-multiselect": "^3.0.0-alpha.2",
"vue-router": "^4.1.5",
"watch-size": "^2.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.1.0",
"@vue/compiler-sfc": "^3.2.47",
"auto": "^10.37.4",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-vue": "^9.1.1",
"less": "^4.1.3",
"sass": "^1.54.9",
"vite": "^3.1.1"
},
"auto": {
"plugins": [
"npm",
"released"
]
}
}