@yuhufe/wtool-vdiff 0.0.8 → 0.0.9
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 +13 -13
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuhufe/wtool-vdiff",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.9",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Monaco diff viewer as Vue 3 Web Component",
|
|
7
7
|
"keywords": [
|
|
@@ -11,14 +11,6 @@
|
|
|
11
11
|
"vue3",
|
|
12
12
|
"web-component"
|
|
13
13
|
],
|
|
14
|
-
"scripts": {
|
|
15
|
-
"vite": "pnpm run dev:site",
|
|
16
|
-
"dev:lib": "vite build --watch --mode development",
|
|
17
|
-
"build:site": "vite build --mode production --config site/vite.config.ts",
|
|
18
|
-
"dev:site": "vite --config site/vite.config.ts",
|
|
19
|
-
"build": "vite build --mode production",
|
|
20
|
-
"pub": "npm run build && npm publish"
|
|
21
|
-
},
|
|
22
14
|
"main": "./dist/wtool-vdiff.cjs.js",
|
|
23
15
|
"module": "./dist/wtool-vdiff.es.js",
|
|
24
16
|
"files": [
|
|
@@ -32,8 +24,6 @@
|
|
|
32
24
|
"author": "",
|
|
33
25
|
"license": "ISC",
|
|
34
26
|
"dependencies": {
|
|
35
|
-
"@yuhufe/web-ui": "workspace:*",
|
|
36
|
-
"@yuhufe/web-common": "workspace:*",
|
|
37
27
|
"@monaco-editor/loader": "^1.6.1",
|
|
38
28
|
"diff": "^9.0.0",
|
|
39
29
|
"es-toolkit": "^1.49.0",
|
|
@@ -47,10 +37,20 @@
|
|
|
47
37
|
"vite": "^7.3.1",
|
|
48
38
|
"vite-plugin-css-injected-by-js": "5.0.1",
|
|
49
39
|
"vite-plugin-dts": "^4.5.3",
|
|
50
|
-
"vue": "^3.5.0"
|
|
40
|
+
"vue": "^3.5.0",
|
|
41
|
+
"@yuhufe/web-ui": "0.1.1",
|
|
42
|
+
"@yuhufe/web-common": "0.1.1"
|
|
51
43
|
},
|
|
52
44
|
"repository": {
|
|
53
45
|
"type": "git",
|
|
54
46
|
"url": "https://github.com/defghy/web-toolkits.git"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"vite": "pnpm run dev:site",
|
|
50
|
+
"dev:lib": "vite build --watch --mode development",
|
|
51
|
+
"build:site": "vite build --mode production --config site/vite.config.ts",
|
|
52
|
+
"dev:site": "vite --config site/vite.config.ts",
|
|
53
|
+
"build": "vite build --mode production",
|
|
54
|
+
"pub": "pnpm run build && pnpm publish"
|
|
55
55
|
}
|
|
56
|
-
}
|
|
56
|
+
}
|