-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.08 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.08 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
{
"name": "wool-components",
"author": "Woolim Park",
"version": "1.1.1",
"license": "MIT",
"sideEffects": false,
"homepage": "https://github.com/woolimi/wool-components#readme",
"description": "FUCKING NOISY BUT CUTE Vue UI components library",
"repository": {
"type": "git",
"url": "git+https://github.com/woolimi/wool-components.git"
},
"bugs": {
"url": "https://github.com/woolimi/wool-components/issues"
},
"keywords": [
"vue",
"vue3",
"components",
"library"
],
"private": false,
"type": "module",
"files": [
"dist"
],
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "vue-tsc --emitDeclarationOnly && vite build",
"story:build": "histoire build && bash ./scripts/adapt-html.sh",
"dev": "histoire dev",
"preview": "histoire preview",
"lint": "eslint './{components,composables}/**/*.{js,ts,vue}' --fix",
"stylelint": "stylelint 'components/**/*.{scss,css,vue}' --fix --max-warnings 0 --custom-syntax postcss-html",
"prepare": "husky install",
"pre-commit": "lint-staged",
"delete-tag": "bash ./scripts/delete-tag.sh",
"release": "yarn build && yarn semantic-release",
"this": "npm view wool-components versions"
},
"dependencies": {
"@floating-ui/dom": "^1.5.3",
"@fxts/core": "^0.23.0",
"@mdi/js": "^7.4.47",
"@vueuse/components": "^10.6.1",
"@vueuse/core": "^10.6.1",
"color": "^4.2.3",
"date-fns": "^2.30.0",
"libphonenumber-js": "^1.10.49",
"lodash-es": "^4.17.21",
"vue": "^3.3.4"
},
"devDependencies": {
"@formatjs/intl-displaynames": "^6.6.4",
"@formatjs/intl-getcanonicallocales": "^2.3.0",
"@formatjs/intl-locale": "^3.4.3",
"@histoire/plugin-vue": "^0.17.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-vue": "^9.18.1",
"histoire": "^0.17.6",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"minimatch": "^9.0.3",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "1.69.5",
"semantic-release": "^22.0.8",
"stylelint": "^15.11.0",
"stylelint-config-clean-order": "^5.2.0",
"stylelint-config-recommended-scss": "^13.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.6.3",
"vite-plugin-libcss": "^1.1.1",
"vite-svg-loader": "^4.0.0",
"vue-tsc": "^1.8.5"
}
}