|
5 | 5 | "author": "Jan T. Sott",
|
6 | 6 | "license": "MIT",
|
7 | 7 | "type": "module",
|
8 |
| - "exports": "./dist/index.mjs", |
| 8 | + "exports": "./dist/index.js", |
9 | 9 | "repository": {
|
10 | 10 | "type": "git",
|
11 | 11 | "url": "git://github.com/idleberg/gulp-xml-validator.git"
|
|
18 | 18 | "xmldom"
|
19 | 19 | ],
|
20 | 20 | "files": [
|
21 |
| - "dist/index.mjs", |
| 21 | + "dist/", |
22 | 22 | "LICENSE",
|
23 | 23 | "package.json",
|
24 |
| - "README.MD" |
| 24 | + "README.md" |
25 | 25 | ],
|
26 | 26 | "engines": {
|
27 | 27 | "gulp": ">=2.3.0",
|
28 |
| - "node": ">=16.13 || >=18" |
| 28 | + "node": ">=18" |
29 | 29 | },
|
30 | 30 | "dependencies": {
|
31 |
| - "@xmldom/xmldom": "^0.8.8", |
| 31 | + "@xmldom/xmldom": "^0.8.10", |
32 | 32 | "kleur": "^4.1.5",
|
33 | 33 | "plugin-error": "^2.0.1"
|
34 | 34 | },
|
35 | 35 | "devDependencies": {
|
36 | 36 | "@types/node": "^20.3.3",
|
37 |
| - "@types/vinyl": "^2.0.7", |
38 |
| - "@typescript-eslint/eslint-plugin": "^5.61.0", |
39 |
| - "@typescript-eslint/parser": "^5.61.0", |
40 |
| - "esbuild": "^0.18.11", |
41 |
| - "eslint": "^8.44.0", |
| 37 | + "@types/vinyl": "^2.0.9", |
| 38 | + "@typescript-eslint/eslint-plugin": "^6.9.1", |
| 39 | + "@typescript-eslint/parser": "^6.9.1", |
| 40 | + "eslint": "^8.53.0", |
42 | 41 | "eslint-plugin-json": "^3.1.0",
|
43 | 42 | "gulp": "^4.0.2",
|
44 | 43 | "husky": "^8.0.3",
|
45 |
| - "lint-staged": "^13.2.3", |
46 |
| - "npm-run-all2": "^6.0.5", |
47 |
| - "tslib": "^2.6.0", |
48 |
| - "typescript": "^5.1.6", |
| 44 | + "knip": "^2.39.0", |
| 45 | + "lint-staged": "^15.0.2", |
| 46 | + "npm-run-all2": "^6.1.1", |
| 47 | + "tsup": "^7.2.0", |
| 48 | + "typescript": "^5.2.2", |
49 | 49 | "uvu": "^0.5.6"
|
50 | 50 | },
|
51 | 51 | "scripts": {
|
52 |
| - "build": "esbuild --bundle src/index.ts --external:@xmldom/xmldom --external:kleur --external:plugin-error --format=esm --minify --outfile=dist/index.mjs --platform=node --sourcemap", |
| 52 | + "build": "tsup", |
53 | 53 | "dev": "npm run build -- --watch",
|
54 | 54 | "lint:js": "eslint ./src/**/*.ts --ignore-path .gitignore",
|
55 | 55 | "lint": "npm-run-all --parallel lint:*",
|
|
0 commit comments