befly-admin 3.4.1 → 3.4.3

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.
Files changed (3) hide show
  1. package/.gitignore +28 -0
  2. package/package.json +22 -21
  3. package/src/env.d.ts +0 -9
package/.gitignore ADDED
@@ -0,0 +1,28 @@
1
+ # Logs
2
+ logs
3
+ *.log
4
+ npm-debug.log*
5
+ yarn-debug.log*
6
+ yarn-error.log*
7
+ pnpm-debug.log*
8
+ lerna-debug.log*
9
+
10
+ node_modules
11
+ dist
12
+ dist-ssr
13
+ *.local
14
+
15
+ # Editor directories and files
16
+ .vscode/*
17
+ !.vscode/extensions.json
18
+ .idea
19
+ .DS_Store
20
+ *.suo
21
+ *.ntvs*
22
+ *.njsproj
23
+ *.sln
24
+ *.sw?
25
+
26
+ # Auto-generated files
27
+ src/types/auto-imports.d.ts
28
+ src/types/components.d.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "befly-admin",
3
- "version": "3.4.1",
3
+ "version": "3.4.3",
4
4
  "description": "Befly Admin - 基于 Vue3 + OpenTiny Vue 的后台管理系统",
5
5
  "type": "module",
6
6
  "private": false,
@@ -9,45 +9,46 @@
9
9
  "registry": "https://registry.npmjs.org"
10
10
  },
11
11
  "files": [
12
- "src/",
13
- "public/",
12
+ "src",
13
+ "public",
14
14
  "index.html",
15
15
  "vite.config.ts",
16
16
  "tsconfig.json",
17
17
  ".env.development",
18
18
  ".env.production",
19
+ ".gitignore",
19
20
  "README.md"
20
21
  ],
21
22
  "scripts": {
22
23
  "dev": "vite",
23
24
  "build": "vue-tsc && vite build",
24
25
  "preview": "vite preview",
25
- "type-check": "vue-tsc --noEmit"
26
+ "type-check": "vue-tsc --noEmit",
27
+ "sync:admin": "bunx befly sync:admin"
26
28
  },
27
29
  "dependencies": {
28
- "@opentiny/vue": "3.26.0",
29
- "axios": "1.12.2",
30
+ "@opentiny/vue": "^3.27.0",
31
+ "axios": "^1.13.1",
30
32
  "befly-auto-routes": "^1.1.0",
31
- "lucide-vue-next": "0.546.0",
32
- "pinia": "3.0.3",
33
- "vue": "3.5.22",
34
- "vue-router": "4.6.3"
33
+ "lucide-vue-next": "^0.552.0",
34
+ "pinia": "^3.0.3",
35
+ "vue": "^3.5.22",
36
+ "vue-router": "^4.6.3"
35
37
  },
36
38
  "devDependencies": {
37
- "@opentiny/unplugin-tiny-vue": "1.0.0",
38
- "@types/node": "24.9.1",
39
- "@vitejs/plugin-vue": "6.0.1",
40
- "@vue-macros/reactivity-transform": "3.1.1",
41
- "sass": "1.93.2",
42
- "typescript": "5.9.3",
43
- "unplugin-auto-import": "20.2.0",
44
- "unplugin-vue-components": "30.0.0",
45
- "vite": "7.1.12",
46
- "vue-tsc": "3.1.1"
39
+ "@opentiny/unplugin-tiny-vue": "^1.0.0",
40
+ "@vitejs/plugin-vue": "^6.0.1",
41
+ "@vue-macros/reactivity-transform": "^3.1.1",
42
+ "sass": "^1.93.3",
43
+ "typescript": "^5.9.3",
44
+ "unplugin-auto-import": "^20.2.0",
45
+ "unplugin-vue-components": "^30.0.0",
46
+ "vite": "^7.1.12",
47
+ "vue-tsc": "^3.1.3"
47
48
  },
48
49
  "engines": {
49
50
  "node": ">=22.0.0",
50
51
  "pnpm": ">=9.0.0"
51
52
  },
52
- "gitHead": "88502177883e3a7a9293a7a4370aa5a15ddf2f02"
53
+ "gitHead": "7f5a3ed6e432a6093e297cd1679a51d593b442a9"
53
54
  }
package/src/env.d.ts DELETED
@@ -1,9 +0,0 @@
1
- /// <reference types="vite/client" />
2
-
3
- interface ImportMetaEnv {
4
- readonly VITE_API_BASE_URL: string;
5
- }
6
-
7
- interface ImportMeta {
8
- readonly env: ImportMetaEnv;
9
- }