@sunny-base-web/effects 0.6.0 → 0.8.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunny-base-web/effects",
3
- "version": "0.6.0",
3
+ "version": "0.8.0",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist"
@@ -9,56 +9,63 @@
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/locales": "0.6.0",
37
- "@sunny-base-web/icons": "0.6.0",
38
- "@sunny-base-web/stores": "0.6.0",
39
- "@sunny-base-web/ui": "0.6.0",
40
- "@sunny-base-web/utils": "0.6.0"
40
+ "zod": "^4.3.6"
41
41
  },
42
42
  "devDependencies": {
43
+ "@sunny-base-web/constants": "workspace:*",
44
+ "@sunny-base-web/tailwind-config": "workspace:*",
45
+ "@sunny-base-web/tsconfig": "workspace:*",
43
46
  "@types/lodash-es": "^4.17.12",
44
47
  "@types/qs": "^6.14.0",
45
48
  "@vitejs/plugin-vue": "^6.0.4",
46
49
  "@vitejs/plugin-vue-jsx": "^5.1.4",
47
50
  "@vue/babel-plugin-jsx": "^2.0.1",
48
- "typescript": "^5.7.2",
51
+ "typescript": "catalog:",
49
52
  "vite": "^7.3.1",
50
- "vite-plugin-dts": "^4.5.4",
51
- "@sunny-base-web/tsconfig": "0.3.0",
52
- "@sunny-base-web/constants": "0.6.0",
53
- "@sunny-base-web/tailwind-config": "0.3.0"
53
+ "vite-plugin-dts": "^4.5.4"
54
54
  },
55
55
  "publishConfig": {
56
+ "main": "./dist/index.js",
57
+ "module": "./dist/index.mjs",
58
+ "types": "./dist/index.d.ts",
59
+ "exports": {
60
+ ".": {
61
+ "types": "./dist/index.d.ts",
62
+ "import": "./dist/index.mjs",
63
+ "require": "./dist/index.js"
64
+ },
65
+ "./style.css": "./dist/effects.css"
66
+ },
56
67
  "style": "./dist/effects.css",
57
68
  "access": "public",
58
69
  "registry": "https://registry.npmjs.org/"
59
- },
60
- "scripts": {
61
- "build": "vite build",
62
- "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
63
70
  }
64
- }
71
+ }