-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.88 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.88 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
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
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "feiui-vue",
"version": "0.0.2",
"private": false,
"type": "module",
"main": "./dist/feiui-vue.umd.js",
"module": "./dist/feiui-vue.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/feiui-vue.es.js",
"require": "./dist/feiui-vue.umd.js"
},
"./style.css": "./dist/index.css"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --ext .js,.ts,.vue",
"lint:fix": "eslint . --ext .js,.ts,.vue --fix",
"lint:report": "eslint . --ext .js,.ts,.vue --format json --output-file eslint-report.json",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "husky install",
"test": "echo \"No tests specified\" && exit 0",
"Vtest": "vitest",
"build:lib": "vite build --config vite.lib.config.ts",
"prepublishOnly": "npm run type-check && npm run build:lib",
"pub": "npm publish --registry https://registry.npmjs.org/"
},
"lint-staged": {
"*.{vue,js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,scss,html}": [
"prettier --write"
]
},
"dependencies": {
"@floating-ui/vue": "^1.1.6",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@popperjs/core": "^2.11.8",
"@vuepic/vue-datepicker": "^11.0.2",
"@wangeditor/editor-for-vue": "^5.1.12",
"async-validator": "^4.2.5",
"d3": "^7.9.0",
"d3-cloud": "^1.2.7",
"d3-hexbin": "^0.2.2",
"d3-hierarchy": "^3.1.2",
"d3-scale-chromatic": "^3.1.0",
"d3-transition": "^3.0.1",
"element-plus": "^2.11.4",
"katex": "^0.16.25",
"lodash-es": "^4.17.21",
"qrcode": "^1.5.4",
"symbol-observable": "^4.0.0",
"vue": "^3.0.0",
"vue-datepicker-next": "^1.0.3",
"vue3-colorpicker": "^2.3.0",
"vue3-markdown-it": "^1.0.10",
"xss": "^1.0.15"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@eslint/js": "^9.37.0",
"@tsconfig/node22": "^22.0.1",
"@types/d3-array": "^3.2.2",
"@types/d3-axis": "^3.0.6",
"@types/d3-cloud": "^1.2.9",
"@types/d3-force": "^3.0.10",
"@types/d3-hexbin": "^0.2.5",
"@types/d3-hierarchy": "^3.1.7",
"@types/d3-interpolate": "^3.0.4",
"@types/d3-scale": "^4.0.9",
"@types/d3-scale-chromatic": "^3.1.0",
"@types/d3-selection": "^3.0.11",
"@types/d3-shape": "^3.1.7",
"@types/jsdom": "^21.1.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.14.0",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"@vitejs/plugin-vue": "^5.2.3",
"@vitejs/plugin-vue-jsx": "^4.1.2",
"@vitest/ui": "^3.2.4",
"@vue/eslint-config-typescript": "^14.5.0",
"@vue/test-utils": "^2.4.0-alpha.2",
"@vue/tsconfig": "^0.7.0",
"canvas": "^3.2.0",
"eslint": "^9.37.0",
"eslint-plugin-vue": "~10.0.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"jsdom": "^26.1.0",
"lint-staged": "^16.2.4",
"npm-run-all2": "^7.0.2",
"postcss": "^8.5.4",
"postcss-comment": "^2.0.0",
"prettier": "^3.6.2",
"sass-embedded": "^1.93.2",
"shiki": "^3.7.0",
"typescript": "~5.8.0",
"typescript-eslint": "^8.45.0",
"unplugin-vue-components": "^29.0.0",
"vite": "^6.2.4",
"vitepress": "2.0.0-alpha.12",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.8"
},
"vitest": {
"environment": "jsdom"
}
}