@sunny-base-web/effects 0.8.34 → 0.8.36

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 (1) hide show
  1. package/package.json +39 -32
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunny-base-web/effects",
3
- "version": "0.8.34",
3
+ "version": "0.8.36",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist"
@@ -9,57 +9,64 @@
9
9
  "module": "./dist/index.mjs",
10
10
  "types": "./dist/index.d.ts",
11
11
  "exports": {
12
- ".": {
13
- "types": "./dist/index.d.ts",
14
- "import": "./dist/index.mjs",
15
- "require": "./dist/index.js"
16
- },
17
- "./style.css": "./dist/effects.css"
12
+ ".": "./src/index.ts",
13
+ "./style.css": "./src/style.css"
14
+ },
15
+ "scripts": {
16
+ "build": "vite build",
17
+ "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
18
18
  },
19
19
  "dependencies": {
20
- "@arco-design/web-vue": "^2.57.0",
21
- "@vueuse/core": "^10.9.0",
22
- "@vxe-ui/plugin-render-arco": "^4.2.1",
20
+ "@arco-design/web-vue": "catalog:",
21
+ "@sunny-base-web/icons": "workspace:^",
22
+ "@sunny-base-web/locales": "workspace:^",
23
+ "@sunny-base-web/stores": "workspace:^",
24
+ "@sunny-base-web/ui": "workspace:^",
25
+ "@sunny-base-web/utils": "workspace:^",
26
+ "@vueuse/core": "catalog:",
27
+ "@vxe-ui/plugin-render-arco": "catalog:",
23
28
  "axios": "^1.13.2",
24
29
  "jsencrypt": "^3.3.2",
25
30
  "pinia": "^2.3.1",
26
31
  "qs": "^6.14.1",
27
- "reka-ui": "^2.7.0",
28
- "vue": "^3.5.13",
29
- "vue-i18n": "^11.2.8",
32
+ "reka-ui": "catalog:",
33
+ "vue": "catalog:",
34
+ "vue-i18n": "catalog:",
30
35
  "vue-router": "^4.6.4",
31
36
  "vue3-slide-verify": "^1.1.8",
32
- "vxe-pc-ui": "^4.13.0",
33
- "vxe-table": "^4.17.49",
37
+ "vxe-pc-ui": "catalog:",
38
+ "vxe-table": "catalog:",
34
39
  "xe-utils": "3.9.1",
35
- "zod": "^4.3.6",
36
- "@sunny-base-web/icons": "^0.8.34",
37
- "@sunny-base-web/locales": "^0.8.34",
38
- "@sunny-base-web/utils": "^0.8.34",
39
- "@sunny-base-web/ui": "^0.8.34",
40
- "@sunny-base-web/stores": "^0.8.34"
40
+ "zod": "^4.3.6"
41
41
  },
42
42
  "devDependencies": {
43
+ "@sunny-base-web/constants": "workspace:*",
44
+ "@sunny-base-web/designer-studio": "workspace:^",
45
+ "@sunny-base-web/tailwind-config": "workspace:*",
46
+ "@sunny-base-web/tsconfig": "workspace:*",
43
47
  "@types/lodash-es": "^4.17.12",
44
48
  "@types/qs": "^6.14.0",
45
49
  "@vitejs/plugin-vue": "^6.0.4",
46
50
  "@vitejs/plugin-vue-jsx": "^5.1.4",
47
51
  "@vue/babel-plugin-jsx": "^2.0.1",
48
- "typescript": "^5.7.2",
52
+ "typescript": "catalog:",
49
53
  "vite": "^7.3.1",
50
- "vite-plugin-dts": "^4.5.4",
51
- "@sunny-base-web/constants": "0.8.34",
52
- "@sunny-base-web/tailwind-config": "0.8.34",
53
- "@sunny-base-web/tsconfig": "0.8.34",
54
- "@sunny-base-web/designer-studio": "^0.1.0"
54
+ "vite-plugin-dts": "^4.5.4"
55
55
  },
56
56
  "publishConfig": {
57
+ "main": "./dist/index.js",
58
+ "module": "./dist/index.mjs",
59
+ "types": "./dist/index.d.ts",
60
+ "exports": {
61
+ ".": {
62
+ "types": "./dist/index.d.ts",
63
+ "import": "./dist/index.mjs",
64
+ "require": "./dist/index.js"
65
+ },
66
+ "./style.css": "./dist/effects.css"
67
+ },
57
68
  "style": "./dist/effects.css",
58
69
  "access": "public",
59
70
  "registry": "https://registry.npmjs.org/"
60
- },
61
- "scripts": {
62
- "build": "vite build",
63
- "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
64
71
  }
65
- }
72
+ }