para-client-js 1.40.4 → 1.40.6

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/dist/index.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
- //#region rolldown:runtime
3
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
4
+ //#region \0rolldown/runtime.js
5
5
  var __create = Object.create;
6
6
  var __defProp = Object.defineProperty;
7
7
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "para-client-js",
3
- "version": "1.40.4",
3
+ "version": "1.40.6",
4
4
  "description": "JavaScript Client for Para",
5
5
  "homepage": "https://paraio.org",
6
- "repository": "erudika/para-client-js",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/Erudika/para-client-js.git"
9
+ },
7
10
  "type": "module",
8
11
  "main": "./dist/index.cjs",
9
12
  "module": "./dist/index.mjs",
@@ -45,21 +48,20 @@
45
48
  "node": ">=18"
46
49
  },
47
50
  "devDependencies": {
48
- "@eslint/js": "^9.39.2",
51
+ "@eslint/js": "^10.0.1",
49
52
  "dotenv": "^17.3.1",
50
- "eslint": "^9.39.2",
53
+ "eslint": "^10.1.0",
51
54
  "eslint-config-prettier": "^10.1.8",
52
- "eslint-plugin-import": "^2.32.0",
53
- "eslint-plugin-n": "^17.23.2",
55
+ "eslint-plugin-n": "^17.24.0",
54
56
  "eslint-plugin-prettier": "^5.5.5",
55
- "eslint-plugin-promise": "^7.2.1",
56
- "globals": "^17.3.0",
57
+ "globals": "^17.4.0",
57
58
  "lodash": "^4.17.23",
58
- "mocha": "^11.7.5",
59
+ "mocha": "^12.0.0-beta-3",
59
60
  "prettier": "^3.8.1",
60
- "testcontainers": "^11.11.0",
61
- "tsdown": "^0.18.4",
62
- "typescript": "^5.9.3"
61
+ "release-it": "^19.2.4",
62
+ "testcontainers": "^11.13.0",
63
+ "tsdown": "^0.21.5",
64
+ "typescript": "^6.0.2"
63
65
  },
64
66
  "scripts": {
65
67
  "build": "tsdown --clean",
@@ -71,12 +73,22 @@
71
73
  "test": "npm run lint && npm run test:unit && npm run test:integration",
72
74
  "test:unit": "mocha \"test/unit/**/*.spec.js\"",
73
75
  "test:integration": "RUN_PARA_INTEGRATION_TESTS=true mocha --require dotenv/config \"test/integration/**/*.spec.js\"",
74
- "prepare": "npm run build && npm run types"
76
+ "prepare": "npm run build && npm run types",
77
+ "release": "release-it"
75
78
  },
76
79
  "license": "Apache-2.0",
77
80
  "dependencies": {
78
81
  "aws4": "^1.13.2",
79
- "lru-cache": "^11.2.6",
82
+ "lru-cache": "^11.2.7",
80
83
  "superagent": "^10.3.0"
84
+ },
85
+ "release-it": {
86
+ "$schema": "https://unpkg.com/release-it/schema/release-it.json",
87
+ "github": {
88
+ "release": true
89
+ },
90
+ "npm": {
91
+ "publish": true
92
+ }
81
93
  }
82
94
  }