@pagopa/opex-dashboard 0.0.1 → 0.0.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.
@@ -3,7 +3,7 @@
3
3
  "$schema": "https://json-schema.org/draft/2020-12/schema",
4
4
  "description": "Configuration schema for generating operational dashboards from OpenAPI specifications",
5
5
  "title": "OpEx Dashboard Configuration",
6
- "version": "0.0.0",
6
+ "version": "0.0.2",
7
7
  "type": "object",
8
8
  "properties": {
9
9
  "action_groups": {
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "git+https://github.com/pagopa/dx.git",
6
6
  "directory": "apps/opex-dashboard"
7
7
  },
8
- "version": "0.0.1",
8
+ "version": "0.0.2",
9
9
  "description": "Generate operational dashboards from OpenAPI specifications",
10
10
  "main": "dist/index.js",
11
11
  "bin": {
@@ -21,13 +21,6 @@
21
21
  "registry": "https://registry.npmjs.org/",
22
22
  "access": "public"
23
23
  },
24
- "scripts": {
25
- "format": "prettier --write .",
26
- "format:check": "prettier --check .",
27
- "build": "tsup && tsx scripts/generate-json-schema.ts",
28
- "dev": "tsup --watch",
29
- "typecheck": "tsc --noEmit"
30
- },
31
24
  "keywords": [
32
25
  "dashboard",
33
26
  "openapi",
@@ -44,20 +37,27 @@
44
37
  "zod": "^4.1.13"
45
38
  },
46
39
  "devDependencies": {
47
- "@pagopa/eslint-config": "workspace:^",
48
- "@tsconfig/node22": "catalog:",
40
+ "@tsconfig/node22": "22.0.2",
49
41
  "@types/js-yaml": "^4.0.9",
50
- "@types/node": "catalog:",
42
+ "@types/node": "^22.19.1",
51
43
  "@types/tmp": "^0.2.6",
52
- "@vitest/coverage-v8": "catalog:",
53
- "eslint": "catalog:",
54
- "prettier": "catalog:",
55
- "tsup": "catalog:",
44
+ "@vitest/coverage-v8": "^3.2.4",
45
+ "eslint": "^9.39.2",
46
+ "prettier": "3.6.2",
47
+ "tsup": "^8.5.1",
56
48
  "tsx": "^4.21.0",
57
- "typescript": "catalog:",
58
- "vitest": "catalog:"
49
+ "typescript": "~5.8.3",
50
+ "vitest": "^3.2.4",
51
+ "@pagopa/eslint-config": "^5.1.2"
59
52
  },
60
53
  "engines": {
61
54
  "node": ">=22.0.0"
55
+ },
56
+ "scripts": {
57
+ "format": "prettier --write .",
58
+ "format:check": "prettier --check .",
59
+ "build": "tsup && tsx scripts/generate-json-schema.ts",
60
+ "dev": "tsup --watch",
61
+ "typecheck": "tsc --noEmit"
62
62
  }
63
- }
63
+ }