create-pubinfo-pr 0.182.3 → 0.182.4
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/dist/cli.js +2 -2
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
- package/templates/pubinfo-app/eslint.config.ts +2 -2
- package/templates/pubinfo-app/src/api/modules/auth/renzhengfuwu.ts +7 -7
- package/templates/pubinfo-module/eslint.config.ts +2 -2
- package/templates/pubinfo-module/playground/src/api/modules/auth/renzhengfuwu.ts +7 -7
- package/templates/pubinfo-monorepo/apps/basic/src/api/modules/auth/renzhengfuwu.ts +7 -7
- package/templates/pubinfo-monorepo/eslint.config.ts +2 -2
- package/templates/pubinfo-monorepo/pnpm-lock.yaml +71 -71
package/dist/cli.js
CHANGED
|
@@ -31,7 +31,7 @@ const META_FILENAME = "pubinfo.json";
|
|
|
31
31
|
|
|
32
32
|
//#endregion
|
|
33
33
|
//#region src/v1/download.ts
|
|
34
|
-
const pubinfo
|
|
34
|
+
const pubinfo = async (input$1, { auth }) => {
|
|
35
35
|
const semver = coerce(input$1);
|
|
36
36
|
return {
|
|
37
37
|
name: "pubinfo-pr",
|
|
@@ -44,7 +44,7 @@ async function download(options) {
|
|
|
44
44
|
const finish = loading();
|
|
45
45
|
try {
|
|
46
46
|
await downloadTemplate(`pubinfo-pr:${PKG_NAME}-${options.version}`, {
|
|
47
|
-
providers: { pubinfo
|
|
47
|
+
providers: { pubinfo },
|
|
48
48
|
force: true,
|
|
49
49
|
forceClean: true,
|
|
50
50
|
dir: options.dir
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-pubinfo-pr",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.182.
|
|
4
|
+
"version": "0.182.4",
|
|
5
5
|
"description": "初始化项目框架",
|
|
6
6
|
"author": "Werheng <werheng.zhang@gmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@inquirer/prompts": "^7.6.0",
|
|
30
|
-
"@pubinfo-pr/shared": "0.182.
|
|
30
|
+
"@pubinfo-pr/shared": "0.182.4",
|
|
31
31
|
"ansi-colors": "^4.1.3",
|
|
32
32
|
"cfonts": "^3.3.0",
|
|
33
33
|
"commander": "^14.0.0",
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import pubinfo
|
|
1
|
+
import pubinfo from 'pubinfo-pr/eslint';
|
|
2
2
|
|
|
3
|
-
export default pubinfo
|
|
3
|
+
export default pubinfo();
|
|
@@ -4,7 +4,7 @@ import { auth as request } from '@/api/request';
|
|
|
4
4
|
* @description 切换登录组织
|
|
5
5
|
* @url /auth/changeLoginOrg
|
|
6
6
|
* @method POST
|
|
7
|
-
* @author @pubinfo
|
|
7
|
+
* @author @pubinfo/openapi
|
|
8
8
|
*/
|
|
9
9
|
export function postAuthChangeLoginOrg<
|
|
10
10
|
R = API.ResponseDataLoginTokenVo,
|
|
@@ -29,7 +29,7 @@ export function postAuthChangeLoginOrg<
|
|
|
29
29
|
* @description 判断缓存的token是否有效
|
|
30
30
|
* @url /auth/checkCacheToken
|
|
31
31
|
* @method GET
|
|
32
|
-
* @author @pubinfo
|
|
32
|
+
* @author @pubinfo/openapi
|
|
33
33
|
*/
|
|
34
34
|
export function getAuthCheckCacheToken<
|
|
35
35
|
R = API.ResponseDataBoolean,
|
|
@@ -50,7 +50,7 @@ export function getAuthCheckCacheToken<
|
|
|
50
50
|
* @description 密码登录
|
|
51
51
|
* @url /auth/login
|
|
52
52
|
* @method POST
|
|
53
|
-
* @author @pubinfo
|
|
53
|
+
* @author @pubinfo/openapi
|
|
54
54
|
*/
|
|
55
55
|
export function postAuthLogin<
|
|
56
56
|
R = API.ResponseDataLoginTokenVo,
|
|
@@ -68,7 +68,7 @@ export function postAuthLogin<
|
|
|
68
68
|
* @description 获取登录公钥
|
|
69
69
|
* @url /auth/login/key
|
|
70
70
|
* @method GET
|
|
71
|
-
* @author @pubinfo
|
|
71
|
+
* @author @pubinfo/openapi
|
|
72
72
|
*/
|
|
73
73
|
export function getAuthLoginKey<
|
|
74
74
|
R = API.ResponseDataString,
|
|
@@ -83,7 +83,7 @@ export function getAuthLoginKey<
|
|
|
83
83
|
* @description 获取图片验证码
|
|
84
84
|
* @url /auth/login/validCode
|
|
85
85
|
* @method GET
|
|
86
|
-
* @author @pubinfo
|
|
86
|
+
* @author @pubinfo/openapi
|
|
87
87
|
*/
|
|
88
88
|
export function getAuthLoginValidCode<
|
|
89
89
|
R = API.ResponseDataValidCodeVo,
|
|
@@ -104,7 +104,7 @@ export function getAuthLoginValidCode<
|
|
|
104
104
|
* @description 登出
|
|
105
105
|
* @url /auth/loginOut
|
|
106
106
|
* @method POST
|
|
107
|
-
* @author @pubinfo
|
|
107
|
+
* @author @pubinfo/openapi
|
|
108
108
|
*/
|
|
109
109
|
export function postAuthLoginOut<
|
|
110
110
|
R = API.ResponseDataVoid,
|
|
@@ -123,7 +123,7 @@ export function postAuthLoginOut<
|
|
|
123
123
|
* @description 刷新访问令牌
|
|
124
124
|
* @url /auth/token/refresh
|
|
125
125
|
* @method POST
|
|
126
|
-
* @author @pubinfo
|
|
126
|
+
* @author @pubinfo/openapi
|
|
127
127
|
*/
|
|
128
128
|
export function postAuthTokenRefresh<
|
|
129
129
|
R = API.ResponseDataLoginTokenVo,
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import pubinfo
|
|
1
|
+
import pubinfo from 'pubinfo-pr/eslint';
|
|
2
2
|
|
|
3
|
-
export default pubinfo
|
|
3
|
+
export default pubinfo();
|
|
@@ -4,7 +4,7 @@ import { auth as request } from '@/api/request';
|
|
|
4
4
|
* @description 切换登录组织
|
|
5
5
|
* @url /auth/changeLoginOrg
|
|
6
6
|
* @method POST
|
|
7
|
-
* @author @pubinfo
|
|
7
|
+
* @author @pubinfo/openapi
|
|
8
8
|
*/
|
|
9
9
|
export function postAuthChangeLoginOrg<
|
|
10
10
|
R = API.ResponseDataLoginTokenVo,
|
|
@@ -29,7 +29,7 @@ export function postAuthChangeLoginOrg<
|
|
|
29
29
|
* @description 判断缓存的token是否有效
|
|
30
30
|
* @url /auth/checkCacheToken
|
|
31
31
|
* @method GET
|
|
32
|
-
* @author @pubinfo
|
|
32
|
+
* @author @pubinfo/openapi
|
|
33
33
|
*/
|
|
34
34
|
export function getAuthCheckCacheToken<
|
|
35
35
|
R = API.ResponseDataBoolean,
|
|
@@ -50,7 +50,7 @@ export function getAuthCheckCacheToken<
|
|
|
50
50
|
* @description 密码登录
|
|
51
51
|
* @url /auth/login
|
|
52
52
|
* @method POST
|
|
53
|
-
* @author @pubinfo
|
|
53
|
+
* @author @pubinfo/openapi
|
|
54
54
|
*/
|
|
55
55
|
export function postAuthLogin<
|
|
56
56
|
R = API.ResponseDataLoginTokenVo,
|
|
@@ -68,7 +68,7 @@ export function postAuthLogin<
|
|
|
68
68
|
* @description 获取登录公钥
|
|
69
69
|
* @url /auth/login/key
|
|
70
70
|
* @method GET
|
|
71
|
-
* @author @pubinfo
|
|
71
|
+
* @author @pubinfo/openapi
|
|
72
72
|
*/
|
|
73
73
|
export function getAuthLoginKey<
|
|
74
74
|
R = API.ResponseDataString,
|
|
@@ -83,7 +83,7 @@ export function getAuthLoginKey<
|
|
|
83
83
|
* @description 获取图片验证码
|
|
84
84
|
* @url /auth/login/validCode
|
|
85
85
|
* @method GET
|
|
86
|
-
* @author @pubinfo
|
|
86
|
+
* @author @pubinfo/openapi
|
|
87
87
|
*/
|
|
88
88
|
export function getAuthLoginValidCode<
|
|
89
89
|
R = API.ResponseDataValidCodeVo,
|
|
@@ -104,7 +104,7 @@ export function getAuthLoginValidCode<
|
|
|
104
104
|
* @description 登出
|
|
105
105
|
* @url /auth/loginOut
|
|
106
106
|
* @method POST
|
|
107
|
-
* @author @pubinfo
|
|
107
|
+
* @author @pubinfo/openapi
|
|
108
108
|
*/
|
|
109
109
|
export function postAuthLoginOut<
|
|
110
110
|
R = API.ResponseDataVoid,
|
|
@@ -123,7 +123,7 @@ export function postAuthLoginOut<
|
|
|
123
123
|
* @description 刷新访问令牌
|
|
124
124
|
* @url /auth/token/refresh
|
|
125
125
|
* @method POST
|
|
126
|
-
* @author @pubinfo
|
|
126
|
+
* @author @pubinfo/openapi
|
|
127
127
|
*/
|
|
128
128
|
export function postAuthTokenRefresh<
|
|
129
129
|
R = API.ResponseDataLoginTokenVo,
|
|
@@ -4,7 +4,7 @@ import { auth as request } from '@/api/request';
|
|
|
4
4
|
* @description 切换登录组织
|
|
5
5
|
* @url /auth/changeLoginOrg
|
|
6
6
|
* @method POST
|
|
7
|
-
* @author @pubinfo
|
|
7
|
+
* @author @pubinfo/openapi
|
|
8
8
|
*/
|
|
9
9
|
export function postAuthChangeLoginOrg<
|
|
10
10
|
R = API.ResponseDataLoginTokenVo,
|
|
@@ -29,7 +29,7 @@ export function postAuthChangeLoginOrg<
|
|
|
29
29
|
* @description 判断缓存的token是否有效
|
|
30
30
|
* @url /auth/checkCacheToken
|
|
31
31
|
* @method GET
|
|
32
|
-
* @author @pubinfo
|
|
32
|
+
* @author @pubinfo/openapi
|
|
33
33
|
*/
|
|
34
34
|
export function getAuthCheckCacheToken<
|
|
35
35
|
R = API.ResponseDataBoolean,
|
|
@@ -50,7 +50,7 @@ export function getAuthCheckCacheToken<
|
|
|
50
50
|
* @description 密码登录
|
|
51
51
|
* @url /auth/login
|
|
52
52
|
* @method POST
|
|
53
|
-
* @author @pubinfo
|
|
53
|
+
* @author @pubinfo/openapi
|
|
54
54
|
*/
|
|
55
55
|
export function postAuthLogin<
|
|
56
56
|
R = API.ResponseDataLoginTokenVo,
|
|
@@ -68,7 +68,7 @@ export function postAuthLogin<
|
|
|
68
68
|
* @description 获取登录公钥
|
|
69
69
|
* @url /auth/login/key
|
|
70
70
|
* @method GET
|
|
71
|
-
* @author @pubinfo
|
|
71
|
+
* @author @pubinfo/openapi
|
|
72
72
|
*/
|
|
73
73
|
export function getAuthLoginKey<
|
|
74
74
|
R = API.ResponseDataString,
|
|
@@ -83,7 +83,7 @@ export function getAuthLoginKey<
|
|
|
83
83
|
* @description 获取图片验证码
|
|
84
84
|
* @url /auth/login/validCode
|
|
85
85
|
* @method GET
|
|
86
|
-
* @author @pubinfo
|
|
86
|
+
* @author @pubinfo/openapi
|
|
87
87
|
*/
|
|
88
88
|
export function getAuthLoginValidCode<
|
|
89
89
|
R = API.ResponseDataValidCodeVo,
|
|
@@ -104,7 +104,7 @@ export function getAuthLoginValidCode<
|
|
|
104
104
|
* @description 登出
|
|
105
105
|
* @url /auth/loginOut
|
|
106
106
|
* @method POST
|
|
107
|
-
* @author @pubinfo
|
|
107
|
+
* @author @pubinfo/openapi
|
|
108
108
|
*/
|
|
109
109
|
export function postAuthLoginOut<
|
|
110
110
|
R = API.ResponseDataVoid,
|
|
@@ -123,7 +123,7 @@ export function postAuthLoginOut<
|
|
|
123
123
|
* @description 刷新访问令牌
|
|
124
124
|
* @url /auth/token/refresh
|
|
125
125
|
* @method POST
|
|
126
|
-
* @author @pubinfo
|
|
126
|
+
* @author @pubinfo/openapi
|
|
127
127
|
*/
|
|
128
128
|
export function postAuthTokenRefresh<
|
|
129
129
|
R = API.ResponseDataLoginTokenVo,
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import pubinfo
|
|
1
|
+
import pubinfo from '@pubinfo-pr/config/eslint';
|
|
2
2
|
|
|
3
|
-
export default pubinfo
|
|
3
|
+
export default pubinfo();
|
|
@@ -11,7 +11,7 @@ importers:
|
|
|
11
11
|
'@ant-design/icons-vue':
|
|
12
12
|
specifier: ^7.0.1
|
|
13
13
|
version: 7.0.1(vue@3.5.24(typescript@5.9.3))
|
|
14
|
-
'@pubinfo
|
|
14
|
+
'@pubinfo/pro-components':
|
|
15
15
|
specifier: ^1.8.1
|
|
16
16
|
version: 1.8.1(@ant-design/icons-vue@7.0.1(vue@3.5.24(typescript@5.9.3)))(ant-design-vue@4.2.6(vue@3.5.24(typescript@5.9.3)))(vue@3.5.24(typescript@5.9.3))
|
|
17
17
|
'@vueuse/core':
|
|
@@ -27,10 +27,10 @@ importers:
|
|
|
27
27
|
specifier: ^1.11.19
|
|
28
28
|
version: 1.11.19
|
|
29
29
|
devDependencies:
|
|
30
|
-
'@pubinfo
|
|
30
|
+
'@pubinfo/commitlint':
|
|
31
31
|
specifier: ^2.1.3
|
|
32
32
|
version: 2.1.3(@types/node@24.10.0)(typescript@5.9.3)
|
|
33
|
-
'@pubinfo
|
|
33
|
+
'@pubinfo/config':
|
|
34
34
|
specifier: ^2.1.3
|
|
35
35
|
version: 2.1.3(@vue/compiler-sfc@3.5.24)(eslint@9.39.1(jiti@2.6.1))(postcss@8.5.6)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(typescript@5.9.3)(unocss@66.5.5(postcss@8.5.6)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1)))
|
|
36
36
|
eslint:
|
|
@@ -51,25 +51,25 @@ importers:
|
|
|
51
51
|
|
|
52
52
|
apps/basic:
|
|
53
53
|
dependencies:
|
|
54
|
-
'@pubinfo
|
|
54
|
+
'@pubinfo/module-auth':
|
|
55
55
|
specifier: 2.1.3
|
|
56
|
-
version: 2.1.3(pubinfo
|
|
57
|
-
'@pubinfo
|
|
56
|
+
version: 2.1.3(pubinfo@2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(alova@3.3.4)(async-validator@4.2.5)(change-case@5.4.4)(chokidar@3.6.0)(esbuild@0.25.12)(eslint@9.39.1(jiti@2.6.1))(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(yaml@2.8.1))
|
|
57
|
+
'@pubinfo/module-rbac':
|
|
58
58
|
specifier: 2.1.3
|
|
59
|
-
version: 2.1.3(@ant-design/icons-vue@7.0.1(vue@3.5.24(typescript@5.9.3)))(@pubinfo
|
|
59
|
+
version: 2.1.3(@ant-design/icons-vue@7.0.1(vue@3.5.24(typescript@5.9.3)))(@pubinfo/pro-components@1.8.1(@ant-design/icons-vue@7.0.1(vue@3.5.24(typescript@5.9.3)))(ant-design-vue@4.2.6(vue@3.5.24(typescript@5.9.3)))(vue@3.5.24(typescript@5.9.3)))(alova@3.3.4)(ant-design-vue@4.2.6(vue@3.5.24(typescript@5.9.3)))(pubinfo@2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(alova@3.3.4)(async-validator@4.2.5)(change-case@5.4.4)(chokidar@3.6.0)(esbuild@0.25.12)(eslint@9.39.1(jiti@2.6.1))(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(yaml@2.8.1))(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3))
|
|
60
60
|
'@vueuse/core':
|
|
61
61
|
specifier: ^14.0.0
|
|
62
62
|
version: 14.0.0(vue@3.5.24(typescript@5.9.3))
|
|
63
|
-
pubinfo
|
|
63
|
+
pubinfo:
|
|
64
64
|
specifier: 2.1.3
|
|
65
65
|
version: 2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(alova@3.3.4)(async-validator@4.2.5)(change-case@5.4.4)(chokidar@3.6.0)(esbuild@0.25.12)(eslint@9.39.1(jiti@2.6.1))(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(yaml@2.8.1)
|
|
66
66
|
devDependencies:
|
|
67
|
-
'@pubinfo
|
|
67
|
+
'@pubinfo/openapi':
|
|
68
68
|
specifier: ^0.9.1
|
|
69
69
|
version: 0.9.1(chokidar@3.6.0)(typescript@5.9.3)
|
|
70
|
-
'@pubinfo
|
|
70
|
+
'@pubinfo/preset-openapi':
|
|
71
71
|
specifier: ^0.9.1
|
|
72
|
-
version: 0.9.1(@pubinfo
|
|
72
|
+
version: 0.9.1(@pubinfo/openapi@0.9.1(chokidar@3.6.0)(typescript@5.9.3))
|
|
73
73
|
|
|
74
74
|
packages:
|
|
75
75
|
|
|
@@ -1763,19 +1763,19 @@ packages:
|
|
|
1763
1763
|
'@polka/url@1.0.0-next.29':
|
|
1764
1764
|
resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
|
|
1765
1765
|
|
|
1766
|
-
'@pubinfo
|
|
1766
|
+
'@pubinfo/cli@2.1.3':
|
|
1767
1767
|
resolution: {integrity: sha512-kWYlV/Qmc33JBvp0l8+BM0wspPPX48Fqlwpzl8v8jb5yY4ECbO3zNZ0oaI+RnLYcEJgphrt8PnoRXspk7h/+pA==}
|
|
1768
1768
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1769
1769
|
hasBin: true
|
|
1770
1770
|
peerDependencies:
|
|
1771
|
-
'@pubinfo
|
|
1771
|
+
'@pubinfo/vite': 2.1.3
|
|
1772
1772
|
|
|
1773
|
-
'@pubinfo
|
|
1773
|
+
'@pubinfo/commitlint@2.1.3':
|
|
1774
1774
|
resolution: {integrity: sha512-eSsC33cS6EiGXx4DeoGasW7f/OQVpCumkgxtZ6FOyNkzKVQTg+/IYA6uThiAKpuWvyzxPWmLcHYS7DKzfIy42Q==}
|
|
1775
1775
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1776
1776
|
hasBin: true
|
|
1777
1777
|
|
|
1778
|
-
'@pubinfo
|
|
1778
|
+
'@pubinfo/config@2.1.3':
|
|
1779
1779
|
resolution: {integrity: sha512-Vnaj8fFSnxrZON5KRYBMEq2rXMzgs+IZOlAq67AIXEM485WSOHDoIvwhBntGCHxYMkVmHgPOar0wu/teWzF9HQ==}
|
|
1780
1780
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1781
1781
|
peerDependencies:
|
|
@@ -1783,68 +1783,68 @@ packages:
|
|
|
1783
1783
|
stylelint: ^16.21.0
|
|
1784
1784
|
unocss: '>=65.5.0'
|
|
1785
1785
|
|
|
1786
|
-
'@pubinfo
|
|
1786
|
+
'@pubinfo/core@2.1.3':
|
|
1787
1787
|
resolution: {integrity: sha512-sxMNS4umOt7pGRx3tLBLwWv37CXIk1O+U5cxauRYICwQVDHIgahPTLefyFj00xyR5dvxJB/yj5zdtBfjGZOGww==}
|
|
1788
1788
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1789
1789
|
peerDependencies:
|
|
1790
|
-
'@pubinfo
|
|
1791
|
-
'@pubinfo
|
|
1792
|
-
'@pubinfo
|
|
1790
|
+
'@pubinfo/config': 2.1.3
|
|
1791
|
+
'@pubinfo/devtools': 2.1.3
|
|
1792
|
+
'@pubinfo/vite': 2.1.3
|
|
1793
1793
|
alova: ^3.3.4
|
|
1794
1794
|
pinia: ^3.0.3
|
|
1795
1795
|
vue: ^3.5.17
|
|
1796
1796
|
vue-router: ^4.5.1
|
|
1797
1797
|
|
|
1798
|
-
'@pubinfo
|
|
1798
|
+
'@pubinfo/devtools@2.1.3':
|
|
1799
1799
|
resolution: {integrity: sha512-itRFSJy5dVUfHHDqFMIb7AWOgvUkuDE028bijsZLCiVchOz+oS1XgJBrI5Kv+TbfvwNpQxyLtZpgrffWkXp1vQ==}
|
|
1800
1800
|
|
|
1801
|
-
'@pubinfo
|
|
1801
|
+
'@pubinfo/headlessui@1.5.4':
|
|
1802
1802
|
resolution: {integrity: sha512-5u0V1J+BNrj9dFhm3s2JBjY+XFIdmfauu5TJus/Tx8n1a0XrA4ddIQa4l3BMETQjqSNi6ZmNNmo+6L/upM6rXQ==}
|
|
1803
1803
|
peerDependencies:
|
|
1804
1804
|
'@ant-design/icons-vue': '*'
|
|
1805
1805
|
ant-design-vue: '>=4.2.0'
|
|
1806
1806
|
vue: '>=3.4.0'
|
|
1807
1807
|
|
|
1808
|
-
'@pubinfo
|
|
1808
|
+
'@pubinfo/module-auth@2.1.3':
|
|
1809
1809
|
resolution: {integrity: sha512-r+mjcJJKhpuDRQgnRTBC1QLXb95RXiN6jrlXRU6K0zV1u5O970lew787gM/jNNkJdBb48V+YspIL8MC3NTYq6A==}
|
|
1810
1810
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1811
1811
|
peerDependencies:
|
|
1812
|
-
pubinfo
|
|
1812
|
+
pubinfo: 2.1.3
|
|
1813
1813
|
|
|
1814
|
-
'@pubinfo
|
|
1814
|
+
'@pubinfo/module-rbac@2.1.3':
|
|
1815
1815
|
resolution: {integrity: sha512-TfdIexHUZtb/KF6D9tgocSBsjaMhp1xzxBwM5/EI7GvVHZ0/LHMaMdODaGrG4hBIFtMTx0DnloBWTx9QDeNuJw==}
|
|
1816
1816
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1817
1817
|
peerDependencies:
|
|
1818
1818
|
'@ant-design/icons-vue': ^7.0.1
|
|
1819
|
-
'@pubinfo
|
|
1819
|
+
'@pubinfo/pro-components': ^1.8.0
|
|
1820
1820
|
alova: ^3.3.4
|
|
1821
1821
|
ant-design-vue: ^4.2.6
|
|
1822
|
-
pubinfo
|
|
1822
|
+
pubinfo: 2.1.3
|
|
1823
1823
|
|
|
1824
|
-
'@pubinfo
|
|
1824
|
+
'@pubinfo/openapi@0.9.1':
|
|
1825
1825
|
resolution: {integrity: sha512-jTzxXyrqqdzZiyjPCibZhSBW4SqW7sbjaTyXNCcmTkQ9rDFG4MChw5RzfYX+QJUHLJBe2Nfa9wrVWd+WdFifww==}
|
|
1826
1826
|
hasBin: true
|
|
1827
1827
|
|
|
1828
|
-
'@pubinfo
|
|
1828
|
+
'@pubinfo/preset-openapi@0.9.1':
|
|
1829
1829
|
resolution: {integrity: sha512-pYiCibHYNK1mnIxvOgdPkghQuyJnbhRy5wcLGrm+Z9KiJQ2asQsQMc+LASntc9QyCCag19Ug0dDz9Mu0fronAQ==}
|
|
1830
1830
|
peerDependencies:
|
|
1831
|
-
'@pubinfo
|
|
1831
|
+
'@pubinfo/openapi': 0.9.1
|
|
1832
1832
|
|
|
1833
|
-
'@pubinfo
|
|
1833
|
+
'@pubinfo/pro-components@1.8.1':
|
|
1834
1834
|
resolution: {integrity: sha512-5pXd+TXDZnfhe9FZsZc7RaVA5C0VM7H9dnyyT9PQASrQQSlipZLq1rksbTKooEUXjan3twhaKAzUqPAsZNpZKw==}
|
|
1835
1835
|
peerDependencies:
|
|
1836
1836
|
'@ant-design/icons-vue': '*'
|
|
1837
1837
|
ant-design-vue: '>=4.2.0'
|
|
1838
1838
|
vue: '>=3.5.0'
|
|
1839
1839
|
|
|
1840
|
-
'@pubinfo
|
|
1840
|
+
'@pubinfo/shared@2.1.3':
|
|
1841
1841
|
resolution: {integrity: sha512-xEKpXh4YQ4qtwnuDsn8VYT7+ri0WMd9qql4izBJ9RzWAPVaqatfYrNwJaQcLLRMt7Ynpg9E3QAiQynMRRkQEDg==}
|
|
1842
1842
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1843
1843
|
|
|
1844
|
-
'@pubinfo
|
|
1844
|
+
'@pubinfo/unplugin-openapi@0.9.1':
|
|
1845
1845
|
resolution: {integrity: sha512-5rXlsiBV6wZwR3kvxtEZrY94ICvPb57UgM8WU1h32aUIxzf3WMbSaUAYMGE0MisQpWms8yV8cYgitnCLVaIuUg==}
|
|
1846
1846
|
|
|
1847
|
-
'@pubinfo
|
|
1847
|
+
'@pubinfo/vite@2.1.3':
|
|
1848
1848
|
resolution: {integrity: sha512-+7KjDuXi4cgdosjhA3+rXb1P4gFZIFtpddXaPhvVMYJSRBkSN/5K0lnChx4IqGYl89BOpeNACl/8Ln+g4ov9OQ==}
|
|
1849
1849
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1850
1850
|
peerDependencies:
|
|
@@ -4907,7 +4907,7 @@ packages:
|
|
|
4907
4907
|
proxy-from-env@1.1.0:
|
|
4908
4908
|
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
|
|
4909
4909
|
|
|
4910
|
-
pubinfo
|
|
4910
|
+
pubinfo@2.1.3:
|
|
4911
4911
|
resolution: {integrity: sha512-WOJf4OEnMHmDyoGuUetpauVxNAdHIn0/zzkNtNjrhXG22BjUBt5w6wX1aoE8aTIuHI4jw6kIl0rKosgt/s42tg==}
|
|
4912
4912
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
4913
4913
|
hasBin: true
|
|
@@ -7806,11 +7806,11 @@ snapshots:
|
|
|
7806
7806
|
|
|
7807
7807
|
'@polka/url@1.0.0-next.29': {}
|
|
7808
7808
|
|
|
7809
|
-
'@pubinfo
|
|
7809
|
+
'@pubinfo/cli@2.1.3(@pubinfo/vite@2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(chokidar@3.6.0)(esbuild@0.25.12)(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3))(yaml@2.8.1))(@types/node@24.10.0)(typescript@5.9.3)':
|
|
7810
7810
|
dependencies:
|
|
7811
|
-
'@pubinfo
|
|
7812
|
-
'@pubinfo
|
|
7813
|
-
'@pubinfo
|
|
7811
|
+
'@pubinfo/commitlint': 2.1.3(@types/node@24.10.0)(typescript@5.9.3)
|
|
7812
|
+
'@pubinfo/shared': 2.1.3
|
|
7813
|
+
'@pubinfo/vite': 2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(chokidar@3.6.0)(esbuild@0.25.12)(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3))(yaml@2.8.1)
|
|
7814
7814
|
cheerio: 1.1.2
|
|
7815
7815
|
citty: 0.1.6
|
|
7816
7816
|
execa: 9.6.0
|
|
@@ -7820,7 +7820,7 @@ snapshots:
|
|
|
7820
7820
|
- '@types/node'
|
|
7821
7821
|
- typescript
|
|
7822
7822
|
|
|
7823
|
-
'@pubinfo
|
|
7823
|
+
'@pubinfo/commitlint@2.1.3(@types/node@24.10.0)(typescript@5.9.3)':
|
|
7824
7824
|
dependencies:
|
|
7825
7825
|
'@commitlint/config-conventional': 19.8.1
|
|
7826
7826
|
'@commitlint/lint': 19.8.1
|
|
@@ -7833,7 +7833,7 @@ snapshots:
|
|
|
7833
7833
|
- '@types/node'
|
|
7834
7834
|
- typescript
|
|
7835
7835
|
|
|
7836
|
-
'@pubinfo
|
|
7836
|
+
'@pubinfo/config@2.1.3(@vue/compiler-sfc@3.5.24)(eslint@9.39.1(jiti@2.6.1))(postcss@8.5.6)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(typescript@5.9.3)(unocss@66.5.5(postcss@8.5.6)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1)))':
|
|
7837
7837
|
dependencies:
|
|
7838
7838
|
'@antfu/eslint-config': 4.19.0(@vue/compiler-sfc@3.5.24)(eslint@9.39.1(jiti@2.6.1))(typescript@5.9.3)
|
|
7839
7839
|
'@stylistic/stylelint-plugin': 3.1.3(stylelint@16.25.0(typescript@5.9.3))
|
|
@@ -7872,18 +7872,18 @@ snapshots:
|
|
|
7872
7872
|
- typescript
|
|
7873
7873
|
- vitest
|
|
7874
7874
|
|
|
7875
|
-
'@pubinfo
|
|
7875
|
+
'@pubinfo/core@2.1.3(@pubinfo/config@2.1.3(@vue/compiler-sfc@3.5.24)(eslint@9.39.1(jiti@2.6.1))(postcss@8.5.6)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(typescript@5.9.3)(unocss@66.5.5(postcss@8.5.6)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))))(@pubinfo/devtools@2.1.3)(@pubinfo/vite@2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(chokidar@3.6.0)(esbuild@0.25.12)(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3))(yaml@2.8.1))(alova@3.3.4)(async-validator@4.2.5)(change-case@5.4.4)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3)))(vue-router@4.6.3(vue@3.5.24(typescript@5.9.3)))(vue@3.5.24(typescript@5.9.3))':
|
|
7876
7876
|
dependencies:
|
|
7877
7877
|
'@alova/adapter-axios': 2.0.16(alova@3.3.4)(axios@1.13.2)
|
|
7878
7878
|
'@alova/shared': 1.3.1
|
|
7879
7879
|
'@ant-design/icons-vue': 7.0.1(vue@3.5.24(typescript@5.9.3))
|
|
7880
7880
|
'@headlessui/vue': 1.7.23(vue@3.5.24(typescript@5.9.3))
|
|
7881
7881
|
'@imengyu/vue3-context-menu': 1.5.2
|
|
7882
|
-
'@pubinfo
|
|
7883
|
-
'@pubinfo
|
|
7884
|
-
'@pubinfo
|
|
7885
|
-
'@pubinfo
|
|
7886
|
-
'@pubinfo
|
|
7882
|
+
'@pubinfo/config': 2.1.3(@vue/compiler-sfc@3.5.24)(eslint@9.39.1(jiti@2.6.1))(postcss@8.5.6)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(typescript@5.9.3)(unocss@66.5.5(postcss@8.5.6)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1)))
|
|
7883
|
+
'@pubinfo/devtools': 2.1.3
|
|
7884
|
+
'@pubinfo/pro-components': 1.8.1(@ant-design/icons-vue@7.0.1(vue@3.5.24(typescript@5.9.3)))(ant-design-vue@4.2.6(vue@3.5.24(typescript@5.9.3)))(vue@3.5.24(typescript@5.9.3))
|
|
7885
|
+
'@pubinfo/shared': 2.1.3
|
|
7886
|
+
'@pubinfo/vite': 2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(chokidar@3.6.0)(esbuild@0.25.12)(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3))(yaml@2.8.1)
|
|
7887
7887
|
'@unocss/reset': 66.5.5
|
|
7888
7888
|
'@vueuse/core': 13.9.0(vue@3.5.24(typescript@5.9.3))
|
|
7889
7889
|
'@vueuse/integrations': 13.9.0(async-validator@4.2.5)(axios@1.13.2)(change-case@5.4.4)(nprogress@0.2.0)(sortablejs@1.15.6)(vue@3.5.24(typescript@5.9.3))
|
|
@@ -7922,13 +7922,13 @@ snapshots:
|
|
|
7922
7922
|
- qrcode
|
|
7923
7923
|
- universal-cookie
|
|
7924
7924
|
|
|
7925
|
-
'@pubinfo
|
|
7925
|
+
'@pubinfo/devtools@2.1.3':
|
|
7926
7926
|
dependencies:
|
|
7927
7927
|
ansis: 4.2.0
|
|
7928
7928
|
sirv: 3.0.2
|
|
7929
7929
|
unconfig: 7.4.0
|
|
7930
7930
|
|
|
7931
|
-
'@pubinfo
|
|
7931
|
+
'@pubinfo/headlessui@1.5.4(@ant-design/icons-vue@7.0.1(vue@3.5.24(typescript@5.9.3)))(ant-design-vue@4.2.6(vue@3.5.24(typescript@5.9.3)))(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3))':
|
|
7932
7932
|
dependencies:
|
|
7933
7933
|
'@ant-design/icons-vue': 7.0.1(vue@3.5.24(typescript@5.9.3))
|
|
7934
7934
|
'@vueuse/components': 13.9.0(vue@3.5.24(typescript@5.9.3))
|
|
@@ -7942,18 +7942,18 @@ snapshots:
|
|
|
7942
7942
|
- '@vue/composition-api'
|
|
7943
7943
|
- typescript
|
|
7944
7944
|
|
|
7945
|
-
'@pubinfo
|
|
7945
|
+
'@pubinfo/module-auth@2.1.3(pubinfo@2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(alova@3.3.4)(async-validator@4.2.5)(change-case@5.4.4)(chokidar@3.6.0)(esbuild@0.25.12)(eslint@9.39.1(jiti@2.6.1))(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(yaml@2.8.1))':
|
|
7946
7946
|
dependencies:
|
|
7947
|
-
pubinfo
|
|
7947
|
+
pubinfo: 2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(alova@3.3.4)(async-validator@4.2.5)(change-case@5.4.4)(chokidar@3.6.0)(esbuild@0.25.12)(eslint@9.39.1(jiti@2.6.1))(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(yaml@2.8.1)
|
|
7948
7948
|
|
|
7949
|
-
'@pubinfo
|
|
7949
|
+
'@pubinfo/module-rbac@2.1.3(@ant-design/icons-vue@7.0.1(vue@3.5.24(typescript@5.9.3)))(@pubinfo/pro-components@1.8.1(@ant-design/icons-vue@7.0.1(vue@3.5.24(typescript@5.9.3)))(ant-design-vue@4.2.6(vue@3.5.24(typescript@5.9.3)))(vue@3.5.24(typescript@5.9.3)))(alova@3.3.4)(ant-design-vue@4.2.6(vue@3.5.24(typescript@5.9.3)))(pubinfo@2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(alova@3.3.4)(async-validator@4.2.5)(change-case@5.4.4)(chokidar@3.6.0)(esbuild@0.25.12)(eslint@9.39.1(jiti@2.6.1))(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(yaml@2.8.1))(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3))':
|
|
7950
7950
|
dependencies:
|
|
7951
7951
|
'@ant-design/icons-vue': 7.0.1(vue@3.5.24(typescript@5.9.3))
|
|
7952
7952
|
'@destyler/color-picker': 0.1.0
|
|
7953
7953
|
'@destyler/popover': 0.1.0
|
|
7954
7954
|
'@destyler/vue': 0.1.0(vue@3.5.24(typescript@5.9.3))
|
|
7955
|
-
'@pubinfo
|
|
7956
|
-
'@pubinfo
|
|
7955
|
+
'@pubinfo/headlessui': 1.5.4(@ant-design/icons-vue@7.0.1(vue@3.5.24(typescript@5.9.3)))(ant-design-vue@4.2.6(vue@3.5.24(typescript@5.9.3)))(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3))
|
|
7956
|
+
'@pubinfo/pro-components': 1.8.1(@ant-design/icons-vue@7.0.1(vue@3.5.24(typescript@5.9.3)))(ant-design-vue@4.2.6(vue@3.5.24(typescript@5.9.3)))(vue@3.5.24(typescript@5.9.3))
|
|
7957
7957
|
'@vueuse/core': 13.9.0(vue@3.5.24(typescript@5.9.3))
|
|
7958
7958
|
alova: 3.3.4
|
|
7959
7959
|
ant-design-vue: 4.2.6(vue@3.5.24(typescript@5.9.3))
|
|
@@ -7962,14 +7962,14 @@ snapshots:
|
|
|
7962
7962
|
json-editor-vue: 0.18.1(vue@3.5.24(typescript@5.9.3))
|
|
7963
7963
|
lodash-es: 4.17.21
|
|
7964
7964
|
lottie-web: 5.13.0
|
|
7965
|
-
pubinfo
|
|
7965
|
+
pubinfo: 2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(alova@3.3.4)(async-validator@4.2.5)(change-case@5.4.4)(chokidar@3.6.0)(esbuild@0.25.12)(eslint@9.39.1(jiti@2.6.1))(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(yaml@2.8.1)
|
|
7966
7966
|
vxe-table: 4.6.10(vue@3.5.24(typescript@5.9.3))
|
|
7967
7967
|
transitivePeerDependencies:
|
|
7968
7968
|
- '@vue/composition-api'
|
|
7969
7969
|
- typescript
|
|
7970
7970
|
- vue
|
|
7971
7971
|
|
|
7972
|
-
'@pubinfo
|
|
7972
|
+
'@pubinfo/openapi@0.9.1(chokidar@3.6.0)(typescript@5.9.3)':
|
|
7973
7973
|
dependencies:
|
|
7974
7974
|
'@umijs/openapi': 1.14.1(chokidar@3.6.0)(typescript@5.9.3)
|
|
7975
7975
|
c12: 3.3.2
|
|
@@ -7988,12 +7988,12 @@ snapshots:
|
|
|
7988
7988
|
- magicast
|
|
7989
7989
|
- typescript
|
|
7990
7990
|
|
|
7991
|
-
'@pubinfo
|
|
7991
|
+
'@pubinfo/preset-openapi@0.9.1(@pubinfo/openapi@0.9.1(chokidar@3.6.0)(typescript@5.9.3))':
|
|
7992
7992
|
dependencies:
|
|
7993
|
-
'@pubinfo
|
|
7993
|
+
'@pubinfo/openapi': 0.9.1(chokidar@3.6.0)(typescript@5.9.3)
|
|
7994
7994
|
type-fest: 5.2.0
|
|
7995
7995
|
|
|
7996
|
-
'@pubinfo
|
|
7996
|
+
'@pubinfo/pro-components@1.8.1(@ant-design/icons-vue@7.0.1(vue@3.5.24(typescript@5.9.3)))(ant-design-vue@4.2.6(vue@3.5.24(typescript@5.9.3)))(vue@3.5.24(typescript@5.9.3))':
|
|
7997
7997
|
dependencies:
|
|
7998
7998
|
'@ant-design/icons-vue': 7.0.1(vue@3.5.24(typescript@5.9.3))
|
|
7999
7999
|
'@vueuse/core': 13.9.0(vue@3.5.24(typescript@5.9.3))
|
|
@@ -8001,13 +8001,13 @@ snapshots:
|
|
|
8001
8001
|
lodash-es: 4.17.21
|
|
8002
8002
|
vue: 3.5.24(typescript@5.9.3)
|
|
8003
8003
|
|
|
8004
|
-
'@pubinfo
|
|
8004
|
+
'@pubinfo/shared@2.1.3':
|
|
8005
8005
|
dependencies:
|
|
8006
8006
|
consola: 3.4.2
|
|
8007
8007
|
|
|
8008
|
-
'@pubinfo
|
|
8008
|
+
'@pubinfo/unplugin-openapi@0.9.1(chokidar@3.6.0)(typescript@5.9.3)':
|
|
8009
8009
|
dependencies:
|
|
8010
|
-
'@pubinfo
|
|
8010
|
+
'@pubinfo/openapi': 0.9.1(chokidar@3.6.0)(typescript@5.9.3)
|
|
8011
8011
|
minimatch: 10.1.1
|
|
8012
8012
|
unplugin: 2.3.10
|
|
8013
8013
|
transitivePeerDependencies:
|
|
@@ -8016,11 +8016,11 @@ snapshots:
|
|
|
8016
8016
|
- magicast
|
|
8017
8017
|
- typescript
|
|
8018
8018
|
|
|
8019
|
-
'@pubinfo
|
|
8019
|
+
'@pubinfo/vite@2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(chokidar@3.6.0)(esbuild@0.25.12)(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3))(yaml@2.8.1)':
|
|
8020
8020
|
dependencies:
|
|
8021
|
-
'@pubinfo
|
|
8022
|
-
'@pubinfo
|
|
8023
|
-
'@pubinfo
|
|
8021
|
+
'@pubinfo/devtools': 2.1.3
|
|
8022
|
+
'@pubinfo/shared': 2.1.3
|
|
8023
|
+
'@pubinfo/unplugin-openapi': 0.9.1(chokidar@3.6.0)(typescript@5.9.3)
|
|
8024
8024
|
'@vitejs/plugin-legacy': 7.2.1(terser@5.44.1)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))
|
|
8025
8025
|
'@vitejs/plugin-vue': 6.0.1(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3))
|
|
8026
8026
|
'@vitejs/plugin-vue-jsx': 5.1.1(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3))
|
|
@@ -11487,15 +11487,15 @@ snapshots:
|
|
|
11487
11487
|
|
|
11488
11488
|
proxy-from-env@1.1.0: {}
|
|
11489
11489
|
|
|
11490
|
-
pubinfo
|
|
11490
|
+
pubinfo@2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(alova@3.3.4)(async-validator@4.2.5)(change-case@5.4.4)(chokidar@3.6.0)(esbuild@0.25.12)(eslint@9.39.1(jiti@2.6.1))(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(yaml@2.8.1):
|
|
11491
11491
|
dependencies:
|
|
11492
11492
|
'@iconify/json': 2.2.405
|
|
11493
11493
|
'@iconify/vue': 5.0.0(vue@3.5.24(typescript@5.9.3))
|
|
11494
|
-
'@pubinfo
|
|
11495
|
-
'@pubinfo
|
|
11496
|
-
'@pubinfo
|
|
11497
|
-
'@pubinfo
|
|
11498
|
-
'@pubinfo
|
|
11494
|
+
'@pubinfo/cli': 2.1.3(@pubinfo/vite@2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(chokidar@3.6.0)(esbuild@0.25.12)(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3))(yaml@2.8.1))(@types/node@24.10.0)(typescript@5.9.3)
|
|
11495
|
+
'@pubinfo/config': 2.1.3(@vue/compiler-sfc@3.5.24)(eslint@9.39.1(jiti@2.6.1))(postcss@8.5.6)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(typescript@5.9.3)(unocss@66.5.5(postcss@8.5.6)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1)))
|
|
11496
|
+
'@pubinfo/core': 2.1.3(@pubinfo/config@2.1.3(@vue/compiler-sfc@3.5.24)(eslint@9.39.1(jiti@2.6.1))(postcss@8.5.6)(stylelint-order@7.0.0(stylelint@16.25.0(typescript@5.9.3)))(stylelint@16.25.0(typescript@5.9.3))(typescript@5.9.3)(unocss@66.5.5(postcss@8.5.6)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))))(@pubinfo/devtools@2.1.3)(@pubinfo/vite@2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(chokidar@3.6.0)(esbuild@0.25.12)(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3))(yaml@2.8.1))(alova@3.3.4)(async-validator@4.2.5)(change-case@5.4.4)(pinia@3.0.4(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3)))(vue-router@4.6.3(vue@3.5.24(typescript@5.9.3)))(vue@3.5.24(typescript@5.9.3))
|
|
11497
|
+
'@pubinfo/devtools': 2.1.3
|
|
11498
|
+
'@pubinfo/vite': 2.1.3(@babel/parser@7.28.5)(@types/node@24.10.0)(@vue/compiler-sfc@3.5.24)(@vueuse/core@14.0.0(vue@3.5.24(typescript@5.9.3)))(chokidar@3.6.0)(esbuild@0.25.12)(jiti@2.6.1)(postcss@8.5.6)(rollup@4.53.2)(svelte@5.43.5)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.0)(jiti@2.6.1)(lightningcss@1.30.2)(terser@5.44.1)(yaml@2.8.1))(vue@3.5.24(typescript@5.9.3))(yaml@2.8.1)
|
|
11499
11499
|
alova: 3.3.4
|
|
11500
11500
|
eslint: 9.39.1(jiti@2.6.1)
|
|
11501
11501
|
pinia: 3.0.4(typescript@5.9.3)(vue@3.5.24(typescript@5.9.3))
|