@versatiles/style 5.9.3 → 5.9.5

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": "@versatiles/style",
3
- "version": "5.9.3",
3
+ "version": "5.9.5",
4
4
  "description": "Generate StyleJSON for MapLibre",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  }
12
12
  },
13
13
  "scripts": {
14
- "check": "npm run lint && npm run build && npm run test && npm run format:check",
14
+ "check": "npm run lint && npm run build && npm run test:all && npm run format:check",
15
15
  "build": "rm -rf release; npm run build-browser && npm run build-node && npm run build-styles && npm run build-sprites && npm run doc",
16
16
  "build-browser": "rollup -c --environment BUILD:browser && $(cd release/versatiles-style; tar -cf - versatiles-style.* | gzip -9 > ../versatiles-style.tar.gz)",
17
17
  "build-node": "rm -rf dist && rollup -c --environment BUILD:node && chmod +x dist/index.js && rm -r dist/declaration",
@@ -27,9 +27,10 @@
27
27
  "lint": "eslint --color .",
28
28
  "prepack": "npm run build",
29
29
  "release": "vrt release-npm",
30
- "test": "npm run test-typescript",
30
+ "test": "vitest run --project unit",
31
+ "test:e2e": "vitest run --project e2e",
32
+ "test:all": "vitest run",
31
33
  "test-coverage": "vitest run --coverage",
32
- "test-typescript": "vitest run",
33
34
  "upgrade": "vrt deps-upgrade",
34
35
  "prepare": "husky"
35
36
  },
@@ -41,41 +42,40 @@
41
42
  "license": "MIT",
42
43
  "type": "module",
43
44
  "dependencies": {
44
- "brace-expansion": "^4.0.1"
45
+ "brace-expansion": "^5.0.4"
45
46
  },
46
47
  "files": [
47
48
  "dist/*"
48
49
  ],
49
50
  "devDependencies": {
51
+ "@eslint/js": "^10.0.1",
50
52
  "@maplibre/maplibre-gl-native": "^6.3.0",
51
- "@maplibre/maplibre-gl-style-spec": "^24.4.1",
53
+ "@maplibre/maplibre-gl-style-spec": "^24.6.0",
52
54
  "@rollup/plugin-commonjs": "^29.0.0",
53
55
  "@rollup/plugin-node-resolve": "^16.0.3",
54
56
  "@rollup/plugin-terser": "^0.4.4",
55
57
  "@rollup/plugin-typescript": "^12.3.0",
56
58
  "@types/bin-pack": "^1.0.3",
57
59
  "@types/brace-expansion": "^1.1.2",
58
- "@types/inquirer": "^9.0.9",
59
- "@types/node": "^25.2.1",
60
+ "@types/node": "^25.3.3",
60
61
  "@types/tar-stream": "^3.1.4",
61
- "@typescript-eslint/eslint-plugin": "^8.54.0",
62
- "@typescript-eslint/parser": "^8.54.0",
63
- "@versatiles/release-tool": "^2.7.0",
62
+ "@typescript-eslint/eslint-plugin": "^8.56.1",
63
+ "@typescript-eslint/parser": "^8.56.1",
64
+ "@versatiles/release-tool": "^2.7.3",
64
65
  "@vitest/coverage-v8": "^4.0.18",
65
66
  "bin-pack": "^1.0.2",
66
- "esbuild": "^0.27.3",
67
- "eslint": "^9.39.2",
67
+ "eslint": "^10.0.2",
68
68
  "husky": "^9.1.7",
69
- "inquirer": "^13.2.2",
70
69
  "prettier": "^3.8.1",
71
- "rollup": "^4.57.1",
70
+ "rollup": "^4.59.0",
72
71
  "rollup-plugin-dts": "^6.3.0",
73
- "rollup-plugin-sourcemaps2": "^0.5.4",
72
+ "rollup-plugin-sourcemaps2": "^0.5.6",
74
73
  "sharp": "^0.34.5",
75
- "tar-stream": "^3.1.7",
74
+ "tar-stream": "^3.1.8",
75
+ "tslib": "^2.8.1",
76
76
  "tsx": "^4.21.0",
77
77
  "typescript": "^5.9.3",
78
- "typescript-eslint": "^8.54.0",
78
+ "typescript-eslint": "^8.56.1",
79
79
  "vitest": "^4.0.18"
80
80
  }
81
81
  }