erpnext-queue-client 2.9.0 → 2.9.2

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 +12 -11
package/package.json CHANGED
@@ -5,14 +5,6 @@
5
5
  "dist"
6
6
  ],
7
7
  "main": "dist/index.js",
8
- "scripts": {
9
- "dev": "tsc -w",
10
- "ci": "yarn test && yarn lint && yarn typecheck",
11
- "test": "APP_ENV=testing varlock run -- vitest",
12
- "test-on-staging": "APP_ENV=dev varlock run -- vitest",
13
- "build": "tsc",
14
- "release": "npm run build && npm publish"
15
- },
16
8
  "author": "Jonathan Laukenmann",
17
9
  "repository": {
18
10
  "type": "git",
@@ -21,6 +13,7 @@
21
13
  "license": "ISC",
22
14
  "dependencies": {
23
15
  "@temporalio/client": "^1.11.3",
16
+ "@temporalio/common": "1.11.3",
24
17
  "crypto-js": "^4.2.0",
25
18
  "lodash": "^4.17.21",
26
19
  "nanoid": "^3.3.7",
@@ -29,18 +22,26 @@
29
22
  "winston": "^3.15.0",
30
23
  "zod": "3.25.76"
31
24
  },
32
- "version": "2.9.0",
25
+ "version": "2.9.2",
33
26
  "engines": {
34
27
  "node": ">=22"
35
28
  },
36
29
  "devDependencies": {
37
- "@varlock/1password-plugin": "^0.3.3",
38
- "varlock": "^0.7.3",
39
30
  "@types/crypto-js": "^4.2.2",
40
31
  "@types/lodash": "^4.17.13",
41
32
  "@types/pako": "^2.0.3",
42
33
  "@types/randombytes": "^2.0.3",
34
+ "@varlock/1password-plugin": "^0.3.3",
43
35
  "typescript": "5.6.3",
36
+ "varlock": "^0.7.3",
44
37
  "vitest": "^2.1.8"
38
+ },
39
+ "scripts": {
40
+ "dev": "tsc -w",
41
+ "ci": "pnpm test && pnpm exec eslint && pnpm exec tsc --noEmit",
42
+ "test": "APP_ENV=testing varlock run -- vitest",
43
+ "test-on-staging": "APP_ENV=dev varlock run -- vitest",
44
+ "build": "tsc",
45
+ "release": "pnpm build && pnpm publish"
45
46
  }
46
47
  }