@milaboratories/pl-errors 1.1.46 → 1.1.47

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.
Files changed (1) hide show
  1. package/package.json +10 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@milaboratories/pl-errors",
3
- "version": "1.1.46",
3
+ "version": "1.1.47",
4
4
  "description": "Parsing errors from Pl backend",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.cjs",
@@ -18,24 +18,26 @@
18
18
  ],
19
19
  "dependencies": {
20
20
  "zod": "~3.23.8",
21
- "@milaboratories/pl-client": "2.16.14",
22
- "@milaboratories/ts-helpers": "1.5.4"
21
+ "@milaboratories/ts-helpers": "1.5.4",
22
+ "@milaboratories/pl-client": "2.16.15"
23
23
  },
24
24
  "devDependencies": {
25
25
  "typescript": "~5.6.3",
26
- "vitest": "^4.0.7",
27
- "@milaboratories/ts-builder": "1.2.0",
28
- "@milaboratories/build-configs": "1.2.0",
26
+ "vitest": "^4.0.16",
27
+ "@vitest/coverage-istanbul": "^4.0.16",
28
+ "eslint": "^9.25.1",
29
29
  "@milaboratories/pl-error-like": "1.12.5",
30
30
  "@milaboratories/eslint-config": "1.0.5",
31
- "@milaboratories/ts-configs": "1.2.0"
31
+ "@milaboratories/ts-configs": "1.2.0",
32
+ "@milaboratories/build-configs": "1.2.1",
33
+ "@milaboratories/ts-builder": "1.2.1"
32
34
  },
33
35
  "scripts": {
34
36
  "type-check": "ts-builder types --target node",
35
37
  "build": "ts-builder build --target node",
36
38
  "build:watch": "ts-builder build --target node --watch",
37
39
  "lint": "eslint .",
38
- "test": "vitest run",
40
+ "test": "vitest run --coverage",
39
41
  "do-pack": "rm -f *.tgz && pnpm pack && mv *.tgz package.tgz"
40
42
  }
41
43
  }