-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
118 lines (118 loc) · 3.16 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
118
{
"name": "vue-amazing-ui",
"version": "2.0.9",
"private": false,
"type": "module",
"author": "theMuseCatcher",
"homepage": "https://themusecatcher.github.io/vue-amazing-ui",
"description": "An Amazing Vue3 UI Components Library, Using TypeScript.",
"repository": {
"type": "git",
"url": "git+https://github.com/themusecatcher/vue-amazing-ui.git"
},
"keywords": [
"Vue3",
"TypeScript",
"Vite",
"Less",
"SFC",
"Amazing",
"UI",
"Components",
"Tools",
"Functions",
"Tree Shaking"
],
"files": [
"dist",
"es",
"lib",
"package.json",
"README.md",
"README.zh-CN.md"
],
"sideEffects": false,
"main": "lib/index.cjs",
"module": "es/index.js",
"unpkg": "dist/index.iife.js",
"jsdelivr": "dist/index.iife.js",
"types": "es/index.d.ts",
"exports": {
"./dist/*": "./dist/*",
"./es/*": "./es/*",
"./lib/*": "./lib/*",
"./css": "./dist/style.css",
".": {
"types": "./es/index.d.ts",
"import": "./es/index.js",
"require": "./lib/index.cjs"
}
},
"scripts": {
"docs:dev": "vitepress dev docs --port 8000 --open",
"docs:build": "vitepress build docs",
"docs:deploy": "sh scripts/deploy.sh",
"dev": "vite",
"pub": "sh scripts/publish.sh",
"push": "sh scripts/push.sh",
"build": "run-s format clean build:components",
"format": "prettier --write src/ components/",
"clean": "rimraf dist es lib",
"build:components": "run-p type-check build:dist build:browser build-only",
"type-check": "vue-tsc --build --force",
"build:dist": "vite build -- dir=dist",
"build:browser": "vite build -- dir=dist f=iife",
"build-only": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"@vuepic/vue-datepicker": "^10.0.0",
"@vueuse/core": "^12.3.0",
"@vueuse/integrations": "^12.3.0",
"qrcode": "^1.5.4",
"seemly": "^0.3.9",
"swiper": "^11.2.0"
},
"devDependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@tsconfig/node22": "^22.0.0",
"@types/minimist": "^1.2.5",
"@types/node": "^22.10.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.2.0",
"@vue/tsconfig": "^0.7.0",
"ant-design-vue": "^4.2.6",
"date-fns": "^4.1.0",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"less": "^4.2.1",
"minimist": "^1.2.8",
"naive-ui": "^2.40.4",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.13.1",
"typescript": "^5.7.2",
"unplugin-auto-import": "^0.19.0",
"unplugin-vue-components": "^0.28.0",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.4.0",
"vite-plugin-style-import": "^2.0.0",
"vitepress": "^1.5.0",
"vue": "^3.5.13",
"vue-amazing-ui": "2.0.9",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/themusecatcher/vue-amazing-ui/issues"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}