-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 2.99 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
{
"name": "@felibrary/vue3-ui",
"version": "0.0.12",
"description": "vue3 ui组件库",
"keywords": [
"ui",
"vue3",
"vue",
"ui-components",
"components",
"lib",
"library"
],
"author": "ddzy <[email protected]>",
"homepage": "https://github.com/ddzy/vue3-ui#readme",
"license": "MIT",
"files": [
"dist/*"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js",
"types": "./dist/typings/index.d.ts"
},
"./dist/": {
"import": "./dist/",
"require": "./dist/"
}
},
"types": "./dist/typings/index.d.ts",
"scripts": {
"preinstall": "npx only-allow pnpm",
"serve": "cross-env NODE_OPTIONS=--max-old-space-size=10240 vitepress dev docs",
"preview": "vitepress preview docs",
"build:docs": "vitepress build docs",
"build:lib": "cross-env NODE_OPTIONS=--max-old-space-size=10240 ts-node ./build/lib.build.ts",
"test": "vitest --clearScreen=false --watch=false",
"commit": "git-cz",
"format": "prettier --write \"packages/**/*.{js,ts,vue,jsx,tsx}\"",
"prepare": "husky install",
"tree": "tree -L 3 -I 'node_modules|coverage|dist|docs' -o ./tree.txt --dirsfirst",
"clear:dstore": "find . -name '.DS_Store' | xargs rm -rf"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog",
"disableScopeLowerCase": true,
"disableSubjectLowerCase": true,
"maxHeaderWidth": 200,
"maxLineWidth": 200
}
},
"lint-staged": {
"packages/**/*.{ts,tsx,js,jsx,vue}": [
"pnpm format"
]
},
"dependencies": {
"@icon-park/vue-next": "1.4.2",
"@vueuse/core": "10.9.0",
"@vueuse/integrations": "10.9.0",
"change-case": "4.1.2",
"decimal.js": "10.3.1",
"lodash-es": "4.17.21",
"mathjs": "13.0.3",
"smooth-scroll-into-view-if-needed": "2.0.2",
"tippy.js": "6.3.7",
"uuid": "10.0.0",
"vue": "3.4.27",
"vue-tippy": "v6"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/fs-extra": "11.0.1",
"@types/lodash-es": "4.17.12",
"@types/node": "20.12.13",
"@types/uuid": "10.0.0",
"@vitejs/plugin-vue": "5.0.4",
"@vitejs/plugin-vue-jsx": "4.0.0",
"@vue/compiler-sfc": "3.4.27",
"@vue/component-compiler-utils": "3.3.0",
"@vue/test-utils": "2.4.6",
"commitizen": "4.2.3",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"fs-extra": "11.1.1",
"husky": "6.0.0",
"identity-obj-proxy": "3.0.0",
"lint-staged": "10.5.4",
"postcss": "8.4.38",
"prettier": "3.3.2",
"regenerator-runtime": "0.13.9",
"sass": "1.62.0",
"terser": "5.16.9",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"vite": "5.2.12",
"vite-plugin-css-injected-by-js": "3.1.0",
"vitepress": "1.2.2",
"vitepress-theme-demoblock": "3.0.5",
"vitest": "2.0.1",
"vue-tsc": "1.2.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
},
"overrides": {
"@volar/typescript": "2.3.1",
"@volar/language-core": "2.3.1"
}
}
}