@remotex-labs/xmap 3.0.4 → 4.0.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
@@ -5,10 +5,10 @@
5
5
  "types": "./dist/index.d.ts",
6
6
  "module": "./dist/esm/index.js",
7
7
  "author": "Garefild",
8
- "version": "3.0.4",
8
+ "version": "4.0.0",
9
9
  "license": "Mozilla Public License Version 2.0",
10
10
  "description": "A library with a sourcemap parser and TypeScript code formatter for the CLI",
11
- "homepage": "https://github.com/remotex-lab/xMap",
11
+ "homepage": "https://remotex-labs.github.io/xMap/",
12
12
  "repository": {
13
13
  "type": "git",
14
14
  "url": "git+https://github.com/remotex-lab/xMap.git"
@@ -32,7 +32,7 @@
32
32
  "typescript runner"
33
33
  ],
34
34
  "engines": {
35
- "node": ">=18"
35
+ "node": ">=20"
36
36
  },
37
37
  "typesVersions": {
38
38
  "*": {
@@ -86,19 +86,26 @@
86
86
  "lint": "xbuild --tc && eslint . -c ./eslint.config.mjs",
87
87
  "ci:test": "jest",
88
88
  "ci:clean": "rm -rf ./dist",
89
- "ci:build": "npm run build"
89
+ "ci:build": "npm run build",
90
+ "docs:dev": "vitepress dev docs",
91
+ "docs:build": "vitepress build docs",
92
+ "docs:preview": "vitepress preview docs"
90
93
  },
91
94
  "devDependencies": {
92
- "jest": "^29.7.0",
93
- "eslint": "^9.23.0",
94
- "typescript-eslint": "^8.28.0",
95
+ "jest": "^30.0.5",
96
+ "eslint": "^9.28.0",
97
+ "vitepress": "^1.6.4",
98
+ "typescript-eslint": "^8.40.0",
95
99
  "eslint-plugin-tsdoc": "^0.4.0",
96
- "@swc/jest": "^0.2.37",
97
- "@types/jest": "^29.5.14",
98
- "@types/node": "^22.13.14",
99
- "@remotex-labs/xbuild": "^1.5.6"
100
+ "vitepress-versioning-plugin": "^1.3.0",
101
+ "eslint-plugin-perfectionist": "^4.15.0",
102
+ "@swc/jest": "^0.2.39",
103
+ "@types/jest": "^30.0.0",
104
+ "@types/node": "^24.3.0",
105
+ "@remotex-labs/xbuild": "^1.6.0"
100
106
  },
101
107
  "dependencies": {
102
- "typescript": "^5.8.2"
108
+ "typescript": "^5.9.2",
109
+ "@remotex-labs/xansi": "^1.1.1"
103
110
  }
104
111
  }