@error-explorer/browser 1.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/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@error-explorer/browser",
3
+ "version": "1.1.1",
4
+ "type": "module",
5
+ "description": "Error Explorer SDK for Browser - Automatic error tracking and breadcrumbs",
6
+ "main": "dist/error-explorer.cjs.js",
7
+ "module": "dist/error-explorer.esm.js",
8
+ "browser": "dist/error-explorer.min.js",
9
+ "types": "dist/index.d.ts",
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "scripts": {
14
+ "build": "rollup -c",
15
+ "build:watch": "rollup -c -w",
16
+ "test": "vitest run",
17
+ "test:watch": "vitest",
18
+ "test:coverage": "vitest run --coverage",
19
+ "lint": "eslint src --ext .ts",
20
+ "lint:fix": "eslint src --ext .ts --fix",
21
+ "typecheck": "tsc --noEmit",
22
+ "clean": "rm -rf dist",
23
+ "prepublishOnly": "npm run clean && npm run build"
24
+ },
25
+ "keywords": [
26
+ "error",
27
+ "tracking",
28
+ "monitoring",
29
+ "browser",
30
+ "javascript",
31
+ "error-explorer",
32
+ "breadcrumbs",
33
+ "logging"
34
+ ],
35
+ "author": "Error Explorer",
36
+ "license": "MIT",
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/Error-Explorer/SDKs.git",
40
+ "directory": "core/browser"
41
+ },
42
+ "bugs": {
43
+ "url": "https://github.com/Error-Explorer/SDKs/issues"
44
+ },
45
+ "homepage": "https://github.com/Error-Explorer/SDKs/tree/main/core/browser#readme",
46
+ "devDependencies": {
47
+ "@rollup/plugin-commonjs": "^25.0.7",
48
+ "@rollup/plugin-node-resolve": "^15.2.3",
49
+ "@rollup/plugin-terser": "^0.4.4",
50
+ "@rollup/plugin-typescript": "^11.1.6",
51
+ "@types/node": "^20.10.0",
52
+ "tslib": "^2.6.2",
53
+ "@typescript-eslint/eslint-plugin": "^6.13.0",
54
+ "@typescript-eslint/parser": "^6.13.0",
55
+ "@vitest/coverage-v8": "^1.1.0",
56
+ "eslint": "^8.55.0",
57
+ "happy-dom": "^12.10.3",
58
+ "rollup": "^4.9.0",
59
+ "rollup-plugin-dts": "^6.1.0",
60
+ "typescript": "^5.3.0",
61
+ "vitest": "^1.1.0"
62
+ },
63
+ "engines": {
64
+ "node": ">=18.0.0"
65
+ },
66
+ "sideEffects": false
67
+ }