@mushi-mushi/web 1.3.0 → 1.6.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": "@mushi-mushi/web",
3
- "version": "1.3.0",
3
+ "version": "1.6.0",
4
4
  "description": "Mushi Mushi browser SDK — embeddable bug reporting widget with Shadow DOM isolation",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -77,11 +77,20 @@
77
77
  "provenance": true
78
78
  },
79
79
  "sideEffects": false,
80
+ "scripts": {
81
+ "build": "tsup",
82
+ "dev": "tsup --watch",
83
+ "clean": "rm -rf dist .turbo",
84
+ "lint": "eslint src/",
85
+ "typecheck": "tsc --noEmit",
86
+ "test": "vitest run",
87
+ "size": "size-limit"
88
+ },
80
89
  "size-limit": [
81
90
  {
82
91
  "name": "Core SDK bundle (minified + gzipped)",
83
92
  "path": "dist/index.js",
84
- "limit": "44 KB",
93
+ "limit": "48 KB",
85
94
  "gzip": true
86
95
  },
87
96
  {
@@ -91,30 +100,21 @@
91
100
  }
92
101
  ],
93
102
  "dependencies": {
94
- "@mushi-mushi/core": "^1.2.0"
103
+ "@mushi-mushi/core": "workspace:^"
95
104
  },
96
105
  "devDependencies": {
106
+ "@mushi-mushi/eslint-config": "workspace:*",
107
+ "@mushi-mushi/tsconfig": "workspace:*",
97
108
  "@size-limit/file": "^12.1.0",
98
109
  "eslint": "^10.3.0",
99
110
  "jsdom": "^29.1.1",
100
111
  "size-limit": "^12.1.0",
101
112
  "tsup": "^8.5.1",
102
113
  "typescript": "^6.0.3",
103
- "vitest": "^4.1.5",
104
- "@mushi-mushi/eslint-config": "0.0.0",
105
- "@mushi-mushi/tsconfig": "0.0.0"
114
+ "vitest": "^4.1.5"
106
115
  },
107
116
  "author": "Kenji Sakuramoto",
108
117
  "engines": {
109
118
  "node": ">=20"
110
- },
111
- "scripts": {
112
- "build": "tsup",
113
- "dev": "tsup --watch",
114
- "clean": "rm -rf dist .turbo",
115
- "lint": "eslint src/",
116
- "typecheck": "tsc --noEmit",
117
- "test": "vitest run",
118
- "size": "size-limit"
119
119
  }
120
- }
120
+ }