opcjs-client 0.1.40-alpha → 0.1.41-alpha

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": "opcjs-client",
3
- "version": "0.1.40-alpha",
3
+ "version": "0.1.41-alpha",
4
4
  "description": "A client for OPC UA communication.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,11 +25,12 @@
25
25
  "scripts": {
26
26
  "lint": "eslint .",
27
27
  "verify": "npx tsc --noEmit",
28
+ "verify:test": "npx tsc -p tsconfig.test.json --noEmit",
28
29
  "build": "tsup",
29
30
  "dev": "tsup --watch",
30
31
  "unittest": "OPCUA_EXTERNAL_SERVER=1 vitest run --reporter=verbose tests/unit",
31
32
  "test": "vitest",
32
- "prepublish": "npm run lint && npm run verify && npm run build && npm run unittest"
33
+ "prepublish": "npm run lint && npm run verify && npm run verify:test && npm run build && npm run unittest"
33
34
  },
34
35
  "keywords": [
35
36
  "opcua",
@@ -45,8 +46,8 @@
45
46
  "@eslint/js": "^10.0.1",
46
47
  "@types/node": "^22.0.0",
47
48
  "tsup": "^8.3.5",
48
- "typescript": "^5.7.3",
49
- "typescript-eslint": "^8.56.1",
49
+ "typescript": "^6.0.2",
50
+ "typescript-eslint": "^8.58.0",
50
51
  "vitest": "^4.0.18"
51
52
  }
52
53
  }