vue-api-kit 1.2.0 → 1.3.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,7 +1,7 @@
1
1
  {
2
2
  "name": "vue-api-kit",
3
3
  "type": "module",
4
- "version": "1.2.0",
4
+ "version": "1.3.0",
5
5
  "description": "A powerful and flexible API client for Vue 3 applications, built with TypeScript and Zod for type-safe API interactions.",
6
6
  "keywords": [
7
7
  "vue3",
@@ -27,6 +27,8 @@
27
27
  "scripts": {
28
28
  "dev": "vite build --watch",
29
29
  "build": "vite build",
30
+ "build:stats": "vite build && npm run size",
31
+ "size": "du -sh dist/ && ls -lh dist/index.js",
30
32
  "commit": "cz",
31
33
  "semantic-release": "semantic-release",
32
34
  "semantic-release-prepare": "semantic-release --dry-run --no-ci"
@@ -42,14 +44,15 @@
42
44
  "files": [
43
45
  "dist"
44
46
  ],
47
+ "sideEffects": false,
45
48
  "dependencies": {
46
49
  "axios": "^1.13.2",
47
- "lodash": "^4.17.21",
50
+ "lodash-es": "^4.17.21",
48
51
  "zod": "^4.1.13"
49
52
  },
50
53
  "devDependencies": {
51
54
  "@types/bun": "latest",
52
- "@types/lodash": "^4.17.21",
55
+ "@types/lodash-es": "^4.17.12",
53
56
  "vite": "^7.2.7",
54
57
  "vite-plugin-dts": "^4.5.4",
55
58
  "@semantic-release/changelog": "^6.0.3",