-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.47 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
{
"name": "@johngerome/vue-ui",
"version": "1.2.6",
"description": "Beautiful Vue UI",
"type": "module",
"files": [
"dist",
"lib"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/lib/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./accordion": {
"import": "./dist/accordion.js",
"require": "./dist/accordion.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"types": "vue-tsc",
"preview": "vite preview",
"semantic-release": "semantic-release",
"prepare": "husky install",
"lint:prettier": "prettier --check .",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"lint:fix": "prettier --write --list-different .",
"lint": "npm run lint:js && npm run lint:prettier",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"auto": "auto",
"release": "auto shipit"
},
"repository": {
"type": "git",
"url": "https://github.com/johngerome/vue-ui.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@zag-js/accordion": "^0.22.0",
"@zag-js/vue": "^0.22.0",
"vue": "3.3.4"
},
"peerDependencies": {
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.1.0",
"@iconify/vue": "^4.1.1",
"@types/node": "^20.6.5",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-typescript": "^12.0.0",
"@zag-js/types": "^0.22.0",
"autoprefixer": "^10.4.16",
"clsx": "2.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"path": "^0.12.7",
"postcss": "^8.4.30",
"postcss-prefix-selector": "^1.16.0",
"prettier": "^3.0.3",
"search-insights": "^2.8.3",
"semantic-release": "^22.0.5",
"tailwind-merge": "1.14.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.5.4",
"vitepress": "1.0.0-rc.20",
"vue-eslint-parser": "^9.3.1",
"vue-tsc": "^1.8.5"
},
"license": "MIT",
"author": "johngerome <johngerome@gmail.com>"
}