@stigg/js-client-sdk 3.90.0 → 3.92.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@stigg/js-client-sdk",
3
- "version": "3.90.0",
3
+ "version": "3.92.1",
4
4
  "description": "Stigg client-side SDK for Browser",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -12,22 +12,17 @@
12
12
  "require": "./dist/index.js"
13
13
  }
14
14
  },
15
- "repository": "https://github.com/stiggio/js-client-sdk.git",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/stiggio/stigg-sdk.git",
18
+ "directory": "packages/js-client-sdk"
19
+ },
16
20
  "license": "MIT",
17
21
  "scripts": {
18
- "start": "webpack serve",
19
- "build:types": "tsc --emitDeclarationOnly",
20
- "build": "yarn build:types && webpack",
21
- "build:watch": "webpack --watch",
22
- "build:prod": "yarn build:types && webpack --env production",
23
- "link-sdk": "yarn build && yarn link",
24
- "fix": "run-s fix:*",
25
- "fix:prettier": "prettier \"src/**/*.ts\" --write",
26
- "fix:lint": "eslint src --fix",
27
- "test": "jest --silent",
28
- "test:watch": "jest --watch",
29
- "test:cov": "jest --coverage",
30
- "prepare": "husky install",
22
+ "build:types": "yarn run -T tsc --emitDeclarationOnly",
23
+ "build": "yarn build:types && webpack --env production",
24
+ "test": "yarn run -T jest --silent",
25
+ "lint": "yarn run -T eslint 'src/**/*.ts'",
31
26
  "docs": "typedoc"
32
27
  },
33
28
  "files": [
@@ -40,44 +35,23 @@
40
35
  "cross-fetch": "^3.1.6",
41
36
  "dayjs": "^1.11.13",
42
37
  "fetch-retry": "^5.0.6",
43
- "husky": "^7.0.4",
44
38
  "lodash": "^4.17.21",
45
39
  "tiny-typed-emitter": "^2.1.0"
46
40
  },
47
41
  "devDependencies": {
48
- "@commitlint/cli": "^14.1.0",
49
- "@commitlint/config-conventional": "^14.1.0",
50
- "@eslint/js": "^10.0.1",
51
42
  "@mswjs/interceptors": "^0.37",
52
- "@types/jest": "^30.0.0",
53
43
  "@types/lodash": "^4.14.177",
54
- "eslint": "^10.0.0",
55
- "eslint-config-prettier": "^10.1.8",
56
- "eslint-plugin-prettier": "^5.5.5",
57
- "jest": "^30.2.0",
58
44
  "jest-environment-jsdom": "^30.2.0",
59
45
  "jest-fetch-mock": "^3.0.3",
60
- "lint-staged": "^12.0.2",
61
46
  "msw": "^0.35.0",
62
- "npm-run-all": "^4.1.5",
63
- "prettier": "^3.8.1",
64
- "ts-jest": "^29.4.6",
65
47
  "ts-loader": "^9.2.6",
66
- "typedoc": "^0.22.13",
67
- "typedoc-plugin-rename-defaults": "^0.4.0",
68
- "typescript": "^5.9.3",
69
- "typescript-eslint": "^8.56.0",
48
+ "typedoc": "^0.28.17",
49
+ "typedoc-plugin-rename-defaults": "^0.7.3",
70
50
  "webpack": "^5.64.1",
71
51
  "webpack-cli": "^4.9.1",
72
52
  "webpack-dev-server": "^4.5.0"
73
53
  },
74
54
  "publishConfig": {
75
55
  "access": "public"
76
- },
77
- "lint-staged": {
78
- "*.{js,jsx,ts,tsx}": [
79
- "prettier --write",
80
- "eslint --cache"
81
- ]
82
56
  }
83
- }
57
+ }