@syntropysoft/syntropyfront 0.4.5 → 0.4.7

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": "@syntropysoft/syntropyfront",
3
- "version": "0.4.5",
3
+ "version": "0.4.7",
4
4
  "type": "module",
5
5
  "description": "🚀 Observability library with automatic capture - Just 1 line of code! Automatically captures clicks, errors, HTTP calls, and console logs with flexible error handling.",
6
6
  "main": "dist/index.js",
@@ -17,28 +17,13 @@
17
17
  "files": [
18
18
  "dist",
19
19
  "README.md",
20
+ "CHANGELOG.md",
20
21
  "LICENSE",
21
22
  "NOTICE",
22
23
  "CONTRIBUTING.md",
23
24
  "SECURITY.md",
24
25
  "CODE_OF_CONDUCT.md"
25
26
  ],
26
- "scripts": {
27
- "build": "rollup -c",
28
- "build:watch": "rollup -c -w",
29
- "dev": "pnpm run build:watch",
30
- "test": "jest",
31
- "test:watch": "jest --watch",
32
- "test:coverage": "jest --config jest.config.coverage.cjs",
33
- "test:mutation": "stryker run",
34
- "test:mutation:watch": "stryker run",
35
- "test:mutation:quick": "stryker run stryker.quick.conf.json",
36
- "clean": "rm -rf dist",
37
- "lint": "eslint src --ext .js",
38
- "lint:fix": "eslint src --ext .js --fix",
39
- "postbuild": "cp src/index.d.ts dist/index.d.ts",
40
- "prepublishOnly": "pnpm run clean && pnpm run build && pnpm test"
41
- },
42
27
  "keywords": [
43
28
  "frontend",
44
29
  "frontend-monitoring",
@@ -120,17 +105,24 @@
120
105
  "jest-environment-jsdom": "^30.2.0",
121
106
  "rollup": "^4.59.0"
122
107
  },
123
- "pnpm": {
124
- "overrides": {
125
- "serialize-javascript": "^7.0.3"
126
- },
127
- "ignoredBuiltDependencies": [
128
- "unrs-resolver"
129
- ]
130
- },
131
108
  "browserslist": [
132
109
  "> 1%",
133
110
  "last 2 versions",
134
111
  "not dead"
135
- ]
112
+ ],
113
+ "scripts": {
114
+ "build": "rollup -c",
115
+ "build:watch": "rollup -c -w",
116
+ "dev": "pnpm run build:watch",
117
+ "test": "jest",
118
+ "test:watch": "jest --watch",
119
+ "test:coverage": "jest --config jest.config.coverage.cjs",
120
+ "test:mutation": "stryker run",
121
+ "test:mutation:watch": "stryker run",
122
+ "test:mutation:quick": "stryker run stryker.quick.conf.json",
123
+ "clean": "rm -rf dist",
124
+ "lint": "eslint src --ext .js",
125
+ "lint:fix": "eslint src --ext .js --fix",
126
+ "postbuild": "cp src/index.d.ts dist/index.d.ts"
127
+ }
136
128
  }