-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.9 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.9 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
99
100
{
"name": "@nethesis/vue-components",
"type": "module",
"version": "3.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",
"src/styles/theme.css"
],
"main": "./dist/vue-components.umd.cjs",
"module": "./dist/vue-components.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/vue-components.js",
"require": "./dist/vue-components.umd.cjs"
},
"./theme.css": "./src/styles/theme.css",
"./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 --list-different src/",
"format-fix": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-pack": "npm version patch --no-git-tag-version && npm run build && npm pack"
},
"dependencies": {
"@fontsource/poppins": "^5.2.6",
"@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",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/vite": "^4.1.7",
"@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": {
"@storybook/addon-docs": "^10.2.14",
"@storybook/addon-links": "^10.2.14",
"@storybook/addon-themes": "^10.2.14",
"@storybook/vue3-vite": "^10.2.14",
"@tailwindcss/forms": "^0.5.9",
"@tsconfig/node24": "^24.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.13.4",
"@types/uuid": "^10.0.0",
"@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": "^10.2.14",
"eslint-plugin-vue": "^9.29.0",
"npm-run-all2": "^6.1.1",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.7.0",
"storybook": "^10.2.14",
"tailwindcss": "^4.1.7",
"typescript": "~5.9.0",
"vite": "^6.0.0",
"vue-tsc": "^2.1.6"
},
"overrides": {
"storybook": "$storybook"
}
}