@mushi-mushi/web 0.1.0 → 0.2.1

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,78 +1,89 @@
1
- {
2
- "name": "@mushi-mushi/web",
3
- "version": "0.1.0",
4
- "description": "Mushi Mushi browser SDK — embeddable bug reporting widget with Shadow DOM isolation",
5
- "license": "MIT",
6
- "type": "module",
7
- "main": "./dist/index.cjs",
8
- "module": "./dist/index.js",
9
- "types": "./dist/index.d.ts",
10
- "exports": {
11
- ".": {
12
- "import": {
13
- "types": "./dist/index.d.ts",
14
- "default": "./dist/index.js"
15
- },
16
- "require": {
17
- "types": "./dist/index.d.cts",
18
- "default": "./dist/index.cjs"
19
- }
20
- }
21
- },
22
- "files": [
23
- "dist",
24
- "README.md",
25
- "LICENSE"
26
- ],
27
- "repository": {
28
- "type": "git",
29
- "url": "https://github.com/kensaurus/mushi-mushi.git",
30
- "directory": "packages/web"
31
- },
32
- "homepage": "https://github.com/kensaurus/mushi-mushi/tree/main/packages/web#readme",
33
- "bugs": {
34
- "url": "https://github.com/kensaurus/mushi-mushi/issues"
35
- },
36
- "keywords": [
37
- "bug-reporting",
38
- "widget",
39
- "browser-sdk",
40
- "shadow-dom",
41
- "user-feedback",
42
- "screenshot"
43
- ],
44
- "publishConfig": {
45
- "access": "public"
46
- },
47
- "sideEffects": false,
48
- "scripts": {
49
- "build": "tsup",
50
- "dev": "tsup --watch",
51
- "clean": "rm -rf dist .turbo",
52
- "lint": "eslint src/",
53
- "typecheck": "tsc --noEmit",
54
- "test": "vitest run",
55
- "size": "size-limit"
56
- },
57
- "size-limit": [
58
- {
59
- "path": "dist/index.js",
60
- "limit": "30 KB"
61
- }
62
- ],
63
- "dependencies": {
64
- "@mushi-mushi/core": "workspace:*"
65
- },
66
- "devDependencies": {
67
- "@mushi-mushi/eslint-config": "workspace:*",
68
- "@mushi-mushi/tsconfig": "workspace:*",
69
- "@size-limit/file": "^12.1.0",
70
- "eslint": "^9.26.0",
71
- "jsdom": "^29.0.2",
72
- "size-limit": "^12.1.0",
73
- "tsup": "^8.5.0",
74
- "typescript": "^5.8.3",
75
- "vitest": "^3.2.1"
76
- },
77
- "author": "Kenji Sakuramoto"
78
- }
1
+ {
2
+ "name": "@mushi-mushi/web",
3
+ "version": "0.2.1",
4
+ "description": "Mushi Mushi browser SDK — embeddable bug reporting widget with Shadow DOM isolation",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/index.cjs",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "import": {
13
+ "types": "./dist/index.d.ts",
14
+ "default": "./dist/index.js"
15
+ },
16
+ "require": {
17
+ "types": "./dist/index.d.cts",
18
+ "default": "./dist/index.cjs"
19
+ }
20
+ }
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "README.md",
25
+ "LICENSE"
26
+ ],
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/kensaurus/mushi-mushi.git",
30
+ "directory": "packages/web"
31
+ },
32
+ "homepage": "https://github.com/kensaurus/mushi-mushi/tree/main/packages/web#readme",
33
+ "bugs": {
34
+ "url": "https://github.com/kensaurus/mushi-mushi/issues"
35
+ },
36
+ "keywords": [
37
+ "mushi-mushi",
38
+ "bug-reporting",
39
+ "user-feedback",
40
+ "browser-sdk",
41
+ "widget",
42
+ "shadow-dom",
43
+ "screenshot",
44
+ "session-replay",
45
+ "shake-to-report",
46
+ "vanilla-js",
47
+ "vue",
48
+ "svelte",
49
+ "angular",
50
+ "rage-click",
51
+ "sentry-companion",
52
+ "error-tracking",
53
+ "sdk"
54
+ ],
55
+ "publishConfig": {
56
+ "access": "public"
57
+ },
58
+ "sideEffects": false,
59
+ "size-limit": [
60
+ {
61
+ "path": "dist/index.js",
62
+ "limit": "30 KB"
63
+ }
64
+ ],
65
+ "dependencies": {
66
+ "@mushi-mushi/core": "^0.2.1"
67
+ },
68
+ "devDependencies": {
69
+ "@size-limit/file": "^12.1.0",
70
+ "eslint": "^10.2.0",
71
+ "jsdom": "^29.0.2",
72
+ "size-limit": "^12.1.0",
73
+ "tsup": "^8.5.0",
74
+ "typescript": "^6.0.2",
75
+ "vitest": "^4.1.4",
76
+ "@mushi-mushi/eslint-config": "0.0.0",
77
+ "@mushi-mushi/tsconfig": "0.0.0"
78
+ },
79
+ "author": "Kenji Sakuramoto",
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
+ }