morghulis 1.0.23 → 1.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,52 +1,70 @@
1
1
  {
2
2
  "name": "morghulis",
3
- "version": "1.0.23",
4
- "description": "基于Vue 3和TypeScript的数据库便捷搭建UI组件库",
5
- "main": "dist/morghulis.umd.js",
6
- "module": "dist/morghulis.es.js",
7
- "style": "dist/style.css",
3
+ "version": "1.0.25",
4
+ "private": false,
5
+ "description": "Vue 3组件库",
6
+ "type": "module",
7
+ "main": "dist/index.js",
8
+ "module": "dist/index.js",
9
+ "types": "dist/types.d.ts",
8
10
  "files": [
9
- "dist",
10
- "README.md",
11
- "types"
11
+ "dist"
12
12
  ],
13
+ "exports": {
14
+ ".": {
15
+ "import": "./dist/index.js",
16
+ "require": "./dist/index.umd.cjs",
17
+ "types": "./dist/index.d.ts"
18
+ },
19
+ "./dist/style.css": "./dist/index.css"
20
+ },
21
+ "typesVersions": {
22
+ "*": {
23
+ "*": ["dist/index.d.ts"]
24
+ }
25
+ },
13
26
  "scripts": {
14
27
  "dev": "vite",
15
- "build": "vite build",
16
- "preview": "vite preview"
28
+ "build": "vue-tsc --noEmit && vite build",
29
+ "preview": "vite preview",
30
+ "type-check": "vue-tsc --build"
17
31
  },
18
32
  "dependencies": {
19
- "@fortawesome/fontawesome-svg-core": "^6.4.0",
20
- "@fortawesome/free-solid-svg-icons": "^6.4.0",
21
- "@fortawesome/vue-fontawesome": "^3.0.3",
22
- "axios": "^1.8.4",
23
- "element-plus": "^2.3.0",
33
+ "@fortawesome/fontawesome-svg-core": "^6.7.2",
34
+ "@fortawesome/free-solid-svg-icons": "^6.7.2",
35
+ "@fortawesome/vue-fontawesome": "^3.0.8",
36
+ "@vueuse/core": "^12.8.0",
37
+ "axios": "^1.8.1",
38
+ "element-plus": "^2.9.7",
24
39
  "font-awesome": "^4.7.0",
25
40
  "js-cookie": "^3.0.5",
26
- "lodash": "^4.17.21",
27
- "nanoid": "^5.0.6",
41
+ "nanoid": "^5.1.2",
28
42
  "nprogress": "^0.2.0",
29
- "sortablejs": "^1.15.6",
30
- "vue": "^3.3.0"
43
+ "sortablejs": "^1.15.6"
44
+ },
45
+ "peerDependencies": {
46
+ "vue": "^3.5.0"
31
47
  },
32
48
  "devDependencies": {
33
- "@types/lodash": "^4.14.195",
34
- "@types/node": "^20.3.1",
49
+ "@tsconfig/node22": "^22.0.0",
50
+ "@types/js-cookie": "^3.0.6",
51
+ "@types/node": "^22.13.9",
52
+ "@types/nprogress": "^0.2.3",
35
53
  "@types/sortablejs": "^1.15.8",
36
- "@vitejs/plugin-vue": "^4.2.3",
37
- "typescript": "^5.8.2",
38
- "vite": "^4.3.9",
39
- "vue-tsc": "^1.8.27"
40
- },
41
- "peerDependencies": {
42
- "vue": "^3.3.0"
54
+ "@types/vue": "^1.0.31",
55
+ "@vitejs/plugin-vue": "^5.2.1",
56
+ "@vue/tsconfig": "^0.7.0",
57
+ "npm-run-all2": "^7.0.2",
58
+ "typescript": "~5.7.3",
59
+ "vite": "^6.1.0",
60
+ "vite-plugin-dts": "^4.5.3",
61
+ "vite-plugin-vue-devtools": "^7.7.2",
62
+ "vue-tsc": "^2.2.2"
43
63
  },
44
- "types": "types/index.d.ts",
45
64
  "keywords": [
46
65
  "vue",
47
- "typescript",
48
- "ui",
49
- "components"
66
+ "component",
67
+ "ui"
50
68
  ],
51
69
  "author": "",
52
70
  "license": "MIT"