@sunny-base-web/ui 0.6.2 → 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,64 +1,71 @@
1
1
  {
2
2
  "name": "@sunny-base-web/ui",
3
- "version": "0.6.2",
3
+ "version": "0.8.0",
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",
38
- "vxe-pc-ui": "^4.13.0",
39
- "vxe-table": "^4.17.49",
40
- "zod": "^4.3.5",
41
- "@sunny-base-web/locales": "0.6.1",
42
- "@sunny-base-web/utils": "0.6.0",
43
- "@sunny-base-web/icons": "0.6.0"
50
+ "vue": "catalog:",
51
+ "vue-i18n": "catalog:",
52
+ "vxe-pc-ui": "catalog:",
53
+ "vxe-table": "catalog:",
54
+ "zod": "^4.3.5"
44
55
  },
45
56
  "devDependencies": {
57
+ "@sunny-base-web/tailwind-config": "workspace:*",
58
+ "@sunny-base-web/tsconfig": "workspace:*",
46
59
  "@types/lodash-es": "^4.17.12",
47
60
  "@types/nprogress": "^0.2.3",
48
61
  "@vitejs/plugin-vue": "^6.0.4",
49
62
  "@vitejs/plugin-vue-jsx": "^5.1.4",
50
- "autoprefixer": "^10.4.17",
51
- "postcss": "^8.4.35",
52
- "tailwindcss": "^3.4.1",
53
- "typescript": "^5.7.2",
63
+ "autoprefixer": "catalog:",
64
+ "postcss": "catalog:",
65
+ "tailwindcss": "catalog:",
66
+ "typescript": "catalog:",
54
67
  "vite": "^7.3.1",
55
68
  "vite-plugin-dts": "^4.5.4",
56
- "vue-tsc": "^2.1.10",
57
- "@sunny-base-web/tailwind-config": "0.3.0",
58
- "@sunny-base-web/tsconfig": "0.3.0"
59
- },
60
- "scripts": {
61
- "build": "vite build",
62
- "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
69
+ "vue-tsc": "catalog:"
63
70
  }
64
- }
71
+ }