-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.79 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": "@nethesis/vue-components",
"type": "module",
"version": "1.7.0",
"private": false,
"keywords": [
"nethserver",
"nethesis",
"vuejs",
"vue",
"components"
],
"homepage": "https://github.com/nethesis/vue-components",
"bugs": "https://github.com/nethesis/vue-components",
"repository": {
"type": "git",
"url": "https://github.com/nethesis/vue-components.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"tailwind.config.ts"
],
"main": "./dist/vue-components.umd.cjs",
"module": "./dist/vue-components.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/vue-components.js",
"require": "./dist/vue-components.umd.cjs",
"types": "./dist/main.d.ts"
},
"./tailwind.config.ts": "./tailwind.config.ts",
"./main.css": {
"import": "./dist/main.css",
"require": "./dist/main.css"
},
"./*": "./dist/*"
},
"scripts": {
"build": "run-p build-types \"build-only {@}\" --",
"build-only": "vite build",
"build-types": "vue-tsc --declaration --declarationMap --emitDeclarationOnly -p tsconfig.app.json --composite false",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/vue-fontawesome": "^3.0.5",
"@headlessui/vue": "^1.7.16",
"@vueuse/core": "^10.7.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"lodash-es": "^4.17.21",
"uuid": "^9.0.1",
"vue": "^3.5.12",
"vue-tippy": "^6.3.1"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@storybook/addon-essentials": "^8.2.8",
"@storybook/addon-interactions": "^8.2.8",
"@storybook/addon-links": "^8.2.8",
"@storybook/addon-themes": "^8.2.8",
"@storybook/blocks": "^8.2.8",
"@storybook/test": "^8.2.8",
"@storybook/vue3": "^8.2.8",
"@storybook/vue3-vite": "^8.2.8",
"@tailwindcss/forms": "^0.5.9",
"@tsconfig/node20": "^20.1.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.16.12",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^10.0.0",
"@vue/eslint-config-typescript": "^14.1.1",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.16",
"eslint": "^9.13.0",
"eslint-plugin-storybook": "^0.11.0",
"eslint-plugin-vue": "^9.29.0",
"npm-run-all2": "^6.1.1",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"storybook": "^8.2.8",
"tailwindcss": "^3.4.14",
"typescript": "~5.2.0",
"vite": "^5.4.9",
"vue-tsc": "^2.1.6"
}
}