-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.21 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "personizely-ui",
"web-types": "./web-types.json",
"version": "0.0.34",
"description": "Personizely UI is a Vue.js UI library with a simple API, based on Reka UI, inspired by shadcn-vue and Keen UI.",
"type": "module",
"main": "./dist/personizely-ui.js",
"exports": {
".": {
"import": "./dist/personizely-ui.js",
"require": "./dist/personizely-ui.umd.cjs"
},
"./assets/personizely-ui.css": "./dist/personizely-ui.css"
},
"scripts": {
"build": "vite build --config vite.config.ts",
"build:types": "vue-tsc --project tsconfig.json --declaration --emitDeclarationOnly --outDir dist/types",
"build:web-types": "node scripts/generate.js",
"clean": "rimraf ./dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"postinstall": "patch-package",
"vue-typecheck": "vue-tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kilobyte2007/personizely-ui"
},
"keywords": [
"vue",
"vuejs",
"personizely",
"reka-ui",
"components",
"ui"
],
"files": [
"dist",
"src",
"LICENSE.md",
"README.md",
"web-types.json",
"package-lock.json"
],
"author": {
"name": "Sergiu Cazac"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kilobyte2007/personizely-ui/issues"
},
"homepage": "https://ui.personizely.dev/",
"dependencies": {
"@ctrl/tinycolor": "^4.1.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/chroma-js": "^2.4.5",
"@types/lodash": "^4.17.0",
"@vueuse/core": "^10.9.0",
"autosize": "^3.0.20",
"chroma-js": "^3.1.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"deepmerge": "^2.0.1",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"lucide-vue-next": "^0.364.0",
"patch-package": "^8.0.0",
"reka-ui": "^1.0.0-alpha.9",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"vue-component-meta": "^2.1.2",
"zod": "^3.23.5"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@iconify/vue": "^4.2.0",
"@tailwindcss/postcss": "^4.0.0-beta.8",
"@tailwindcss/vite": "^4.0.0-beta.8",
"@vee-validate/rules": "^4.14.7",
"@vee-validate/zod": "^4.14.7",
"@vitejs/plugin-vue": "5.2.1",
"@vue/tsconfig": "^0.7.0",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"rimraf": "^2.7.1",
"tailwindcss": "^4.0.0-beta.8",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vee-validate": "^4.14.7",
"vite": "6.0.9",
"vite-plugin-banner": "^0.8.0",
"vitepress": "^1.5.0",
"vue": "^3.5.13",
"vue-docgen-api": "^4.79.2",
"vue-docgen-web-types": "^0.1.8",
"vue-tsc": "^2.1.10"
},
"peerDependencies": {
"vee-validate": "^4.14.7"
},
"overrides": {
"tailwindcss-animate": {
"tailwindcss": "^4.0.0-beta.8"
}
}
}