halo-pc 1.0.52 → 1.0.53
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 +53 -56
package/package.json
CHANGED
@@ -1,57 +1,54 @@
|
|
1
|
-
{
|
2
|
-
"name": "halo-pc",
|
3
|
-
"version": "1.0.
|
4
|
-
"description": "Halo pc framework",
|
5
|
-
"scripts": {
|
6
|
-
"halo-pc:install": "pnpm install",
|
7
|
-
"halo-pc:outdated": "pnpm outdated",
|
8
|
-
"halo-pc:
|
9
|
-
"halo-pc:
|
10
|
-
"halo-pc:
|
11
|
-
"halo-pc:build": "vite build",
|
12
|
-
"halo-pc:build:debug": "vite build --debug",
|
13
|
-
"halo-pc:
|
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
|
-
"vite": "7.1.9",
|
55
|
-
"vue-tsc": "3.1.1"
|
56
|
-
}
|
1
|
+
{
|
2
|
+
"name": "halo-pc",
|
3
|
+
"version": "1.0.53",
|
4
|
+
"description": "Halo pc framework",
|
5
|
+
"scripts": {
|
6
|
+
"halo-pc:install": "pnpm install",
|
7
|
+
"halo-pc:outdated": "pnpm outdated",
|
8
|
+
"halo-pc:link": "pnpm link ../halo-fe",
|
9
|
+
"halo-pc:unlink": "pnpm unlink ../halo-fe",
|
10
|
+
"halo-pc:tsc": "vue-tsc",
|
11
|
+
"halo-pc:build": "vite build",
|
12
|
+
"halo-pc:build:debug": "vite build --debug",
|
13
|
+
"halo-pc:publish": "node build/publish.js & npm publish"
|
14
|
+
},
|
15
|
+
"type": "module",
|
16
|
+
"module": "./dist/main.js",
|
17
|
+
"types": "./esm/main.d.ts",
|
18
|
+
"files": [
|
19
|
+
"dist",
|
20
|
+
"esm"
|
21
|
+
],
|
22
|
+
"keywords": [
|
23
|
+
"halo",
|
24
|
+
"pc"
|
25
|
+
],
|
26
|
+
"author": "jay.zhou <869758965@qq.com>",
|
27
|
+
"license": "MIT",
|
28
|
+
"publishConfig": {
|
29
|
+
"registry": "https://registry.npmjs.org"
|
30
|
+
},
|
31
|
+
"peerDependencies": {},
|
32
|
+
"dependencies": {
|
33
|
+
"@micro-zoe/micro-app": "1.0.0-rc.27",
|
34
|
+
"clipboard": "2.0.11",
|
35
|
+
"echarts": "6.0.0",
|
36
|
+
"element-plus": "2.11.4",
|
37
|
+
"intro.js": "8.3.2",
|
38
|
+
"halo-fe": "1.0.36",
|
39
|
+
"sortablejs": "1.15.6",
|
40
|
+
"vue": "3.5.22",
|
41
|
+
"vue-canvas-nest": "2.0.0",
|
42
|
+
"vue-router": "4.5.1"
|
43
|
+
},
|
44
|
+
"devDependencies": {
|
45
|
+
"@fortawesome/fontawesome-free": "7.1.0",
|
46
|
+
"@types/node": "24.7.1",
|
47
|
+
"@vitejs/plugin-vue": "6.0.1",
|
48
|
+
"@vitejs/plugin-vue-jsx": "5.1.1",
|
49
|
+
"sass": "1.93.2",
|
50
|
+
"typescript": "5.9.3",
|
51
|
+
"vite": "7.1.9",
|
52
|
+
"vue-tsc": "3.1.1"
|
53
|
+
}
|
57
54
|
}
|