@platformatic/node 3.4.1 → 3.5.0

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,45 +1,47 @@
1
1
  {
2
2
  "name": "@platformatic/node",
3
- "version": "3.4.1",
4
- "description": "Platformatic Node.js Stackable",
3
+ "version": "3.5.0",
4
+ "description": "Platformatic Node.js Capability",
5
5
  "main": "index.js",
6
6
  "type": "module",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "git+https://github.com/platformatic/platformatic.git"
10
10
  },
11
- "author": "Paolo Insogna <paolo@cowtech.it>",
11
+ "author": "Platformatic Inc. <oss@platformatic.dev> (https://platformatic.dev)",
12
12
  "license": "Apache-2.0",
13
13
  "bugs": {
14
14
  "url": "https://github.com/platformatic/platformatic/issues"
15
15
  },
16
16
  "homepage": "https://github.com/platformatic/platformatic#readme",
17
17
  "dependencies": {
18
+ "json5": "^2.2.3",
18
19
  "light-my-request": "^6.0.0",
19
- "@platformatic/basic": "3.4.1",
20
- "@platformatic/config": "3.4.1",
21
- "@platformatic/telemetry": "3.4.1",
22
- "@platformatic/utils": "3.4.1"
20
+ "@platformatic/basic": "3.5.0",
21
+ "@platformatic/generators": "3.5.0",
22
+ "@platformatic/foundation": "3.5.0"
23
23
  },
24
24
  "devDependencies": {
25
- "borp": "^0.17.0",
26
- "express": "^4.19.2",
25
+ "cleaner-spec-reporter": "^0.5.0",
27
26
  "eslint": "9",
27
+ "express": "^4.19.2",
28
28
  "fastify": "^5.0.0",
29
29
  "json-schema-to-typescript": "^15.0.1",
30
30
  "koa": "^2.15.3",
31
- "neostandard": "^0.11.1",
31
+ "neostandard": "^0.12.0",
32
32
  "tsx": "^4.19.0",
33
33
  "typescript": "^5.5.4",
34
- "@platformatic/composer": "3.4.1",
35
- "@platformatic/service": "3.4.1"
34
+ "@platformatic/gateway": "3.5.0",
35
+ "@platformatic/service": "3.5.0"
36
+ },
37
+ "engines": {
38
+ "node": ">=22.19.0"
36
39
  },
37
40
  "scripts": {
38
- "test": "npm run lint && borp --concurrency=1 --no-timeout",
39
- "coverage": "npm run lint && borp -C -X test -X test/fixtures --concurrency=1 --no-timeout",
41
+ "test": "node --test --test-reporter=cleaner-spec-reporter --test-concurrency=1 --test-timeout=2000000 test/*.test.js test/**/*.test.js",
40
42
  "gen-schema": "node lib/schema.js > schema.json",
41
43
  "gen-types": "json2ts > config.d.ts < schema.json",
42
- "build": "pnpm run gen-schema && pnpm run gen-types",
44
+ "build": "npm run gen-schema && npm run gen-types",
43
45
  "lint": "eslint"
44
46
  }
45
47
  }