-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.49 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.49 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
{
"name": "@four-bytes/four-tailwind-ui",
"version": "0.3.10",
"description": "Reusable Vue 3 + Tailwind CSS UI components by Four Bytes",
"type": "module",
"main": "./dist/four-tailwind-ui.umd.cjs",
"module": "./dist/four-tailwind-ui.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/four-tailwind-ui.js",
"require": "./dist/four-tailwind-ui.umd.cjs",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css",
"./style-tokens.css": "./src/style-tokens.css",
"./tailwind.config": "./tailwind.config.js"
},
"files": [
"dist",
"tailwind.config.js",
"NOTICE.md"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint src --ext .vue,.ts,.tsx",
"lint:fix": "eslint src --ext .vue,.ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{vue,ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{vue,ts,tsx,css}\"",
"typecheck": "vue-tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"vue": "^3.5.0",
"vue-router": "^4.0.0"
},
"dependencies": {
"clsx": "^2.1.0",
"tailwind-merge": "^2.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^20.11.0",
"@vitejs/plugin-vue": "^5.0.0",
"@vitest/coverage-v8": "^1.6.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.0",
"jsdom": "^28.0.0",
"postcss": "^8.4.33",
"prettier": "^3.2.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.7.0",
"vitepress": "^1.6.4",
"vitest": "^1.2.0",
"vue": "^3.4.0",
"vue-router": "^4.2.0",
"vue-tsc": "^3.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/four-bytes/four-tailwind-ui.git"
},
"keywords": [
"vue",
"vue3",
"tailwind",
"tailwindcss",
"ui",
"components",
"four-bytes"
],
"author": "Four Bytes",
"license": "MIT",
"bugs": {
"url": "https://github.com/four-bytes/four-tailwind-ui/issues"
},
"homepage": "https://github.com/four-bytes/four-tailwind-ui#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}