-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
96 lines (96 loc) · 2.44 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
{
"name": "vue-dark-switch",
"version": "1.0.6",
"description": "多合一的开箱即用 vue3 暗黑模式开关组件 | A versatile vue3 dark mode switch component",
"main": "./dist/exports.cjs",
"module": "./dist/exports.mjs",
"types": "./dist/exports.d.ts",
"exports": {
".": {
"require": "./dist/exports.cjs",
"import": "./dist/exports.mjs",
"types": "./dist/exports.d.ts"
},
"./vite": {
"require": "./dist/vite.cjs",
"import": "./dist/vite.mjs",
"types": "./dist/vite.d.ts"
},
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=16",
"pnpm": ">=7.0.0"
},
"packageManager": "pnpm@8.6.11",
"scripts": {
"dev": "vite",
"build-js": "vite build",
"prepublishOnly": "pnpm build",
"build-types": "vue-tsc -p tsconfig.build.json",
"copy-polyfill": "fast-cpy src/polyfill dist/polyfill",
"release": "bumpp --commit --push --tag && npm publish",
"build": "rimraf -rf dist && run-p copy-polyfill build-js build-types",
"example:vue:dev": "pnpm -C examples/vue run dev",
"example:vue:build": "pnpm -C examples/vue run build",
"example:vue:preview": "pnpm -C examples/vue run preview",
"example:nuxt:dev": "pnpm -C examples/nuxt run dev",
"example:nuxt:build": "pnpm -C examples/vue run build",
"example:nuxt:preview": "pnpm -C examples/vue run preview"
},
"repository": {
"type": "git",
"url": "https://github.com/dishait/vue-dark-switch.git"
},
"keywords": [
"switch",
"dark",
"theme",
"vue",
"nuxt"
],
"license": "MIT",
"author": {
"name": "markthree",
"email": "1801982702@qq.com",
"url": "https://github.com/markthree"
},
"sideEffects": [
"**/*.css"
],
"devDependencies": {
"@iconify-json/line-md": "^1.1.25",
"@types/node": "^18.17.3",
"@vicons/material": "^0.12.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vueuse/core": "^9.13.0",
"bumpp": "^9.1.1",
"fast-cpy": "^0.0.8",
"naive-ui": "^2.34.4",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"typescript": "^5.1.6",
"unocss": "^0.54.1",
"vite": "^4.4.8",
"vite-layers": "^0.3.5",
"vite-plugin-lib-inject-css": "^1.2.0",
"vite-plugin-warmup": "^0.1.0",
"vue": "^3.3.4",
"vue-tsc": "^1.8.8"
},
"peerDependencies": {
"vite": ">=4.0.0",
"vue": ">=3.0.0"
}
}