@unmagic/vms 0.1.6-beta.0 → 0.1.6
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 +16 -18
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unmagic/vms",
|
|
3
|
-
"version": "0.1.6
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "基于 @unmagic/vue-mini 的Vue3 单文件组件构建工具",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
|
-
"packageManager": "pnpm@10.28.2",
|
|
8
7
|
"engines": {
|
|
9
8
|
"node": ">=22.17.1"
|
|
10
9
|
},
|
|
@@ -22,21 +21,6 @@
|
|
|
22
21
|
"bin": {
|
|
23
22
|
"vms": "bin/index.js"
|
|
24
23
|
},
|
|
25
|
-
"scripts": {
|
|
26
|
-
"example:dev": "cd example && npm run dev",
|
|
27
|
-
"example:build": "cd example && npm run build",
|
|
28
|
-
"example:inspect": "cd example && npm run inspect:vms",
|
|
29
|
-
"vms:build": "rolldown --config rolldown.config.js",
|
|
30
|
-
"test": "vitest",
|
|
31
|
-
"test:run": "vitest run",
|
|
32
|
-
"test:ui": "vitest --ui",
|
|
33
|
-
"publish:ci": "npm publish",
|
|
34
|
-
"link": "pnpm link --global",
|
|
35
|
-
"lint": "oxlint ./src",
|
|
36
|
-
"format": "oxfmt --check \"**/*.{js,cjs,ts,json,md}\"",
|
|
37
|
-
"release": "tsx release.ts",
|
|
38
|
-
"prepare": "husky"
|
|
39
|
-
},
|
|
40
24
|
"files": [
|
|
41
25
|
"dist",
|
|
42
26
|
"bin"
|
|
@@ -94,5 +78,19 @@
|
|
|
94
78
|
"rolldown": "^1.0.0",
|
|
95
79
|
"terser": "^5.46.2",
|
|
96
80
|
"tinycolor2": "^1.6.0"
|
|
81
|
+
},
|
|
82
|
+
"scripts": {
|
|
83
|
+
"example:dev": "cd example && npm run dev",
|
|
84
|
+
"example:build": "cd example && npm run build",
|
|
85
|
+
"example:inspect": "cd example && npm run inspect:vms",
|
|
86
|
+
"vms:build": "rolldown --config rolldown.config.js",
|
|
87
|
+
"test": "vitest",
|
|
88
|
+
"test:run": "vitest run",
|
|
89
|
+
"test:ui": "vitest --ui",
|
|
90
|
+
"publish:ci": "npm publish",
|
|
91
|
+
"link": "pnpm link --global",
|
|
92
|
+
"lint": "oxlint ./src",
|
|
93
|
+
"format": "oxfmt --check \"**/*.{js,cjs,ts,json,md}\"",
|
|
94
|
+
"release": "tsx release.ts"
|
|
97
95
|
}
|
|
98
|
-
}
|
|
96
|
+
}
|