sitepong 0.0.1 → 0.0.4

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,56 +1,68 @@
1
1
  {
2
- "name": "sitepong",
3
- "version": "0.0.1",
4
- "description": "Official SitePong SDK for error tracking and monitoring",
5
- "main": "dist/index.js",
6
- "module": "dist/index.mjs",
7
- "types": "dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.mjs",
12
- "require": "./dist/index.js"
13
- }
14
- },
15
- "files": [
16
- "dist"
17
- ],
18
- "scripts": {
19
- "build": "tsup src/index.ts --format cjs,esm --dts --clean",
20
- "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
21
- "lint": "eslint src/",
22
- "test": "vitest run",
23
- "test:watch": "vitest",
24
- "prepublishOnly": "npm run build"
25
- },
26
- "keywords": [
27
- "error-tracking",
28
- "monitoring",
29
- "sitepong",
30
- "error-reporting",
31
- "crash-reporting"
32
- ],
33
- "author": "SitePong",
34
- "license": "MIT",
35
- "repository": {
36
- "type": "git",
37
- "url": "https://github.com/programmrz/sitepong.git",
38
- "directory": "packages/sdk"
39
- },
40
- "homepage": "https://sitepong.com",
41
- "bugs": {
42
- "url": "https://github.com/programmrz/sitepong/issues"
43
- },
44
- "devDependencies": {
45
- "@types/node": "^20.10.0",
46
- "@typescript-eslint/eslint-plugin": "^6.13.0",
47
- "@typescript-eslint/parser": "^6.13.0",
48
- "eslint": "^8.55.0",
49
- "tsup": "^8.0.1",
50
- "typescript": "^5.3.0",
51
- "vitest": "^1.0.0"
52
- },
53
- "engines": {
54
- "node": ">=16.0.0"
55
- }
2
+ "name": "sitepong",
3
+ "version": "0.0.4",
4
+ "description": "Official SitePong SDK for error tracking and monitoring",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ },
14
+ "./react": {
15
+ "types": "./dist/react/index.d.ts",
16
+ "import": "./dist/react/index.mjs",
17
+ "require": "./dist/react/index.js"
18
+ }
19
+ },
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "scripts": {
24
+ "build": "tsup src/index.ts src/react/index.ts --format cjs,esm --dts --clean",
25
+ "dev": "tsup src/index.ts src/react/index.ts --format cjs,esm --dts --watch",
26
+ "lint": "eslint --cache src/**/*.{ts,tsx}",
27
+ "test": "vitest run",
28
+ "test:watch": "vitest",
29
+ "prepublishOnly": "npm run build"
30
+ },
31
+ "keywords": [
32
+ "error-tracking",
33
+ "monitoring",
34
+ "sitepong",
35
+ "error-reporting",
36
+ "crash-reporting"
37
+ ],
38
+ "author": "SitePong",
39
+ "license": "MIT",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/programmrz/sitepong.git",
43
+ "directory": "packages/sdk"
44
+ },
45
+ "homepage": "https://sitepong.com",
46
+ "bugs": {
47
+ "url": "https://github.com/programmrz/sitepong/issues"
48
+ },
49
+ "dependencies": {
50
+ "@sitepong/types": "*"
51
+ },
52
+ "devDependencies": {
53
+ "@types/express": "^5.0.6",
54
+ "@types/node": "^20.10.0",
55
+ "@types/react": "^19.2.9",
56
+ "@typescript-eslint/eslint-plugin": "^6.13.0",
57
+ "@typescript-eslint/parser": "^6.13.0",
58
+ "eslint": "^8.55.0",
59
+ "next": "^16.1.4",
60
+ "react": "^19.2.3",
61
+ "tsup": "^8.0.1",
62
+ "typescript": "^5.3.0",
63
+ "vitest": "^1.0.0"
64
+ },
65
+ "engines": {
66
+ "node": ">=16.0.0"
67
+ }
56
68
  }