-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.89 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
{
"name": "@cartino/ui",
"version": "0.0.1",
"description": "A UI component library built with Vue 3, Tailwind CSS, and Reka UI",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/style.css",
"./*.css": "./dist/*.css"
},
"files": [
"dist"
],
"sideEffects": [
"*.css",
"*.vue"
],
"scripts": {
"dev": "cross-env CARTINO_DEV=true vite",
"dev:storybook": "storybook dev -p 6006",
"dev:watch": "CARTINO_DEV=true vite build --watch",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"build-storybook": "storybook build"
},
"peerDependencies": {
"vue": "^3.4.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@storybook/addon-a11y": "^10.1.10",
"@storybook/addon-docs": "^10.1.10",
"@storybook/addon-links": "^10.1.10",
"@storybook/addon-themes": "^10.1.10",
"@storybook/vue3-vite": "^10.1.10",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.0.3",
"@vitejs/plugin-vue": "^6.0.3",
"cross-env": "^10.1.0",
"storybook": "^10.1.10",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vue": "^3.5.26",
"vue-tsc": "^3.2.1"
},
"keywords": [
"vue",
"vue3",
"ui",
"components",
"tailwind",
"reka-ui"
],
"author": "",
"license": "MIT",
"dependencies": {
"@iconify/vue": "^5.0.0",
"@internationalized/date": "^3.10.1",
"@tanstack/vue-table": "^8.21.3",
"@vueuse/core": "^14.1.0",
"reka-ui": "^2.7.0",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.2.2"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "none"
}
}