-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·63 lines (63 loc) · 1.76 KB
/
package.json
File metadata and controls
executable file
·63 lines (63 loc) · 1.76 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
{
"name": "vuelicity",
"version": "0.0.2",
"type": "module",
"license": "MIT",
"author": "diy-baazar",
"private": false,
"scripts": {
"build:package": "rimraf dist && vite build",
"build:types": "vue-tsc --declaration --emitDeclarationOnly && tsc-alias -p tsconfig.json",
"build": "npm run build:package && npm run build:types",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"files": [
"src",
"dist"
],
"main": "./dist/vuelicity.umd.cjs",
"module": "./dist/vuelicity.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vuelicity.js",
"require": "./dist/vuelicity.umd.cjs"
},
"./index.css": "./dist/index.css"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/vite": "^4.1.11",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"rimraf": "^6.0.1",
"sass": "^1.89.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.8.3",
"vite": "^7.0.0",
"vitepress": "^1.6.3",
"vue-tsc": "^3.0.1"
},
"peerDependencies": {
"tailwindcss": "^4",
"vue": "^3.5.x"
},
"dependencies": {
"postcss-prefix-selector": "^2.1.1",
"tailwindcss": "^4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DIY-Baazar/vuelicity.git"
},
"engines": {
"node": ">=18.x",
"npm": ">=10.x"
},
"homepage": "https://vuelicity.diybaazar.com/"
}