@mushi-mushi/web 1.7.7 → 1.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/README.md +39 -1
- package/dist/index.cjs +248 -28
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +248 -28
- package/dist/index.js.map +1 -1
- package/package.json +15 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mushi-mushi/web",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.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,15 +77,6 @@
|
|
|
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
|
-
},
|
|
89
80
|
"size-limit": [
|
|
90
81
|
{
|
|
91
82
|
"name": "Core SDK bundle (minified + gzipped)",
|
|
@@ -100,21 +91,30 @@
|
|
|
100
91
|
}
|
|
101
92
|
],
|
|
102
93
|
"dependencies": {
|
|
103
|
-
"@mushi-mushi/core": "^1.
|
|
94
|
+
"@mushi-mushi/core": "^1.8.0"
|
|
104
95
|
},
|
|
105
96
|
"devDependencies": {
|
|
106
|
-
"@mushi-mushi/eslint-config": "workspace:*",
|
|
107
|
-
"@mushi-mushi/tsconfig": "workspace:*",
|
|
108
97
|
"@size-limit/file": "^12.1.0",
|
|
109
98
|
"eslint": "^10.3.0",
|
|
110
99
|
"jsdom": "^29.1.1",
|
|
111
100
|
"size-limit": "^12.1.0",
|
|
112
101
|
"tsup": "^8.5.1",
|
|
113
102
|
"typescript": "^6.0.3",
|
|
114
|
-
"vitest": "^4.1.5"
|
|
103
|
+
"vitest": "^4.1.5",
|
|
104
|
+
"@mushi-mushi/eslint-config": "0.0.0",
|
|
105
|
+
"@mushi-mushi/tsconfig": "0.0.0"
|
|
115
106
|
},
|
|
116
107
|
"author": "Kenji Sakuramoto",
|
|
117
108
|
"engines": {
|
|
118
109
|
"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
|
+
}
|