-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
{
"name": "vue-daisyui-theme-manager",
"author": "I Kaan Yilmaz <[email protected]> (https://github.com/kaandesu)",
"version": "0.0.29",
"license": "MIT",
"description": "A plugin that allows you to change DaisyUI themes during runtime. As well as, setting default light and dark themes, and matching the system theme.",
"contributors": [
{
"name": "I Kaan Yilmaz",
"email": "[email protected]"
}
],
"keywords": [
"vue",
"daisyUI",
"theme",
"vue3",
"tailwindcss"
],
"repository": {
"type": "git",
"url": "https://github.com/kaandesu/vue-daisyui-theme-manager.git"
},
"homepage": "https://kaandesu.github.io/vue-daisyui-theme-manager/",
"bugs": {
"url": "https://github.com/kaandesu/vue-daisyui-theme-manager/issues"
},
"files": [
"dist",
"create-config.js",
"set-config-path.js"
],
"main": "./dist/vue-daisyui-theme-manager.umd.cjs",
"module": "./dist/vue-daisyui-theme-manager.js",
"exports": {
".": {
"import": "./dist/vue-daisyui-theme-manager.js",
"require": "./dist/vue-daisyui-theme-manager.umd.cjs"
}
},
"types": "./dist/types.d.ts",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && cp ./create-config.js ./dist && npm run generate:types && npm run build:live-demo",
"build:live-demo": "vite build --mode live-demo --outDir ./live-demo",
"generate:types": "vue-tsc -p tsconfig-build.json",
"set-conf": "node set-config-path.js",
"postinstall": "node create-config.js && npm run set-conf"
},
"dependencies": {
"daisyui": "^2.51.6",
"vue": "^3.2.47",
"vue-daisyui-theme-manager": "^0.0.28"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@vitejs/plugin-vue": "^4.1.0",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.23",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vue-tsc": "^1.2.0"
}
}