@bugport.dev/widget 0.1.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/LICENSE +21 -0
- package/README.md +133 -0
- package/dist/index.cjs +7295 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +576 -0
- package/dist/index.d.ts +576 -0
- package/dist/index.js +7211 -0
- package/dist/index.js.map +1 -0
- package/package.json +77 -0
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bugport.dev/widget",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "BugPort customer-facing bug reporting widget — capture feedback, annotations, screenshots, and page context from any React or browser app.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"bugport",
|
|
8
|
+
"bug-report",
|
|
9
|
+
"feedback",
|
|
10
|
+
"bug-tracking",
|
|
11
|
+
"annotations",
|
|
12
|
+
"screenshot",
|
|
13
|
+
"react",
|
|
14
|
+
"widget",
|
|
15
|
+
"qa"
|
|
16
|
+
],
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": "BugPort",
|
|
19
|
+
"homepage": "https://bugport.dev",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/masood1/bugport-monorepo.git",
|
|
23
|
+
"directory": "packages/widget"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/masood1/bugport-monorepo/issues"
|
|
27
|
+
},
|
|
28
|
+
"type": "module",
|
|
29
|
+
"sideEffects": false,
|
|
30
|
+
"main": "./dist/index.cjs",
|
|
31
|
+
"module": "./dist/index.js",
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"import": "./dist/index.js",
|
|
37
|
+
"require": "./dist/index.cjs"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public"
|
|
42
|
+
},
|
|
43
|
+
"files": [
|
|
44
|
+
"dist",
|
|
45
|
+
"README.md",
|
|
46
|
+
"LICENSE"
|
|
47
|
+
],
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "tsup",
|
|
50
|
+
"typecheck": "tsc --noEmit",
|
|
51
|
+
"lint": "eslint src",
|
|
52
|
+
"test": "vitest run --environment jsdom",
|
|
53
|
+
"prepublishOnly": "pnpm run build"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"react": ">=18.0.0",
|
|
57
|
+
"react-dom": ">=18.0.0"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@eslint/js": "^9.17.0",
|
|
61
|
+
"@testing-library/react": "^16.3.0",
|
|
62
|
+
"@types/node": "^24.0.7",
|
|
63
|
+
"@types/react": "^19.2.14",
|
|
64
|
+
"@types/react-dom": "^19.2.3",
|
|
65
|
+
"eslint": "^9.17.0",
|
|
66
|
+
"jsdom": "^26.1.0",
|
|
67
|
+
"postcss": "^8.5.6",
|
|
68
|
+
"postcss-modules": "^6.0.1",
|
|
69
|
+
"react": "^19.2.0",
|
|
70
|
+
"react-dom": "^19.2.0",
|
|
71
|
+
"sass": "^1.89.2",
|
|
72
|
+
"tsup": "^8.5.0",
|
|
73
|
+
"typescript": "^5.9.3",
|
|
74
|
+
"typescript-eslint": "^8.18.0",
|
|
75
|
+
"vitest": "^4.0.4"
|
|
76
|
+
}
|
|
77
|
+
}
|