@sunny-base-web/ui 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 +41 -34
package/package.json CHANGED
@@ -1,65 +1,72 @@
1
1
  {
2
2
  "name": "@sunny-base-web/ui",
3
- "version": "0.8.34",
3
+ "version": "0.8.36",
4
4
  "private": false,
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.mjs",
7
- "types": "./dist/index.d.ts",
5
+ "main": "./src/index.ts",
6
+ "module": "./src/index.ts",
7
+ "types": "./src/index.ts",
8
8
  "files": [
9
9
  "dist"
10
10
  ],
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/ui.css"
12
+ ".": "./src/index.ts",
13
+ "./style.css": "./src/style.css"
18
14
  },
19
15
  "publishConfig": {
16
+ "main": "./dist/index.js",
17
+ "module": "./dist/index.mjs",
18
+ "types": "./dist/index.d.ts",
19
+ "exports": {
20
+ ".": {
21
+ "types": "./dist/index.d.ts",
22
+ "import": "./dist/index.mjs",
23
+ "require": "./dist/index.js"
24
+ },
25
+ "./style.css": "./dist/ui.css"
26
+ },
20
27
  "style": "./dist/ui.css",
21
28
  "access": "public",
22
29
  "registry": "https://registry.npmjs.org/"
23
30
  },
31
+ "scripts": {
32
+ "build": "vite build",
33
+ "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
34
+ },
24
35
  "dependencies": {
25
- "@arco-design/web-vue": "^2.57.0",
36
+ "@arco-design/web-vue": "catalog:",
37
+ "@sunny-base-web/icons": "workspace:^",
38
+ "@sunny-base-web/locales": "workspace:^",
39
+ "@sunny-base-web/utils": "workspace:^",
26
40
  "@tanstack/store": "^0.8.0",
27
41
  "@tanstack/vue-store": "^0.8.0",
28
42
  "@vee-validate/zod": "^4.15.1",
29
- "@vueuse/core": "^10.9.0",
30
- "@vxe-ui/plugin-render-arco": "^4.2.1",
43
+ "@vueuse/core": "catalog:",
44
+ "@vxe-ui/plugin-render-arco": "catalog:",
31
45
  "axios": "^1.13.2",
32
46
  "lodash-es": "^4.17.23",
33
47
  "nprogress": "^0.2.0",
34
- "reka-ui": "^2.7.0",
48
+ "reka-ui": "catalog:",
35
49
  "vee-validate": "^4.15.1",
36
- "vue": "^3.5.13",
37
- "vue-i18n": "^11.2.8",
50
+ "vue": "catalog:",
51
+ "vue-i18n": "catalog:",
38
52
  "vue-qrcode-reader": "^5.7.3",
39
- "vxe-pc-ui": "^4.13.0",
40
- "vxe-table": "^4.17.49",
41
- "zod": "^4.3.5",
42
- "@sunny-base-web/icons": "^0.8.34",
43
- "@sunny-base-web/locales": "^0.8.34",
44
- "@sunny-base-web/utils": "^0.8.34"
53
+ "vxe-pc-ui": "catalog:",
54
+ "vxe-table": "catalog:",
55
+ "zod": "^4.3.5"
45
56
  },
46
57
  "devDependencies": {
58
+ "@sunny-base-web/tailwind-config": "workspace:*",
59
+ "@sunny-base-web/tsconfig": "workspace:*",
47
60
  "@types/lodash-es": "^4.17.12",
48
61
  "@types/nprogress": "^0.2.3",
49
62
  "@vitejs/plugin-vue": "^6.0.4",
50
63
  "@vitejs/plugin-vue-jsx": "^5.1.4",
51
- "autoprefixer": "^10.4.17",
52
- "postcss": "^8.4.35",
53
- "tailwindcss": "^3.4.1",
54
- "typescript": "^5.7.2",
64
+ "autoprefixer": "catalog:",
65
+ "postcss": "catalog:",
66
+ "tailwindcss": "catalog:",
67
+ "typescript": "catalog:",
55
68
  "vite": "^7.3.1",
56
69
  "vite-plugin-dts": "^4.5.4",
57
- "vue-tsc": "^2.1.10",
58
- "@sunny-base-web/tailwind-config": "0.8.34",
59
- "@sunny-base-web/tsconfig": "0.8.34"
60
- },
61
- "scripts": {
62
- "build": "vite build",
63
- "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
70
+ "vue-tsc": "catalog:"
64
71
  }
65
- }
72
+ }