|
5 | 5 | "description": "Vite Ecosystem CI", |
6 | 6 | "scripts": { |
7 | 7 | "prepare": "pnpm exec simple-git-hooks", |
8 | | - "lint": "eslint '**/*.ts'", |
| 8 | + "lint": "eslint --cache '**/*.{js,ts}'", |
9 | 9 | "lint:fix": "pnpm lint --fix", |
10 | 10 | "typecheck": "tsc", |
11 | 11 | "format": "prettier --ignore-path .gitignore --check .", |
12 | 12 | "format:fix": "pnpm format --write", |
13 | | - "test:self": "tsx ecosystem-ci.ts _selftest", |
14 | | - "test": "tsx ecosystem-ci.ts", |
15 | | - "bisect": "tsx ecosystem-ci.ts bisect" |
| 13 | + "test:self": "node ecosystem-ci.ts _selftest", |
| 14 | + "test": "node ecosystem-ci.ts", |
| 15 | + "bisect": "node ecosystem-ci.ts bisect" |
16 | 16 | }, |
17 | 17 | "simple-git-hooks": { |
18 | 18 | "pre-commit": "pnpm exec lint-staged --concurrent false" |
|
21 | 21 | "*": [ |
22 | 22 | "prettier --write --ignore-unknown" |
23 | 23 | ], |
24 | | - "*.ts": [ |
| 24 | + "*.{js,ts}": [ |
25 | 25 | "eslint --fix" |
26 | 26 | ] |
27 | 27 | }, |
28 | 28 | "packageManager": "pnpm@10.32.1", |
29 | 29 | "type": "module", |
30 | 30 | "engines": { |
31 | | - "node": ">=18", |
| 31 | + "node": ">=24", |
32 | 32 | "pnpm": "^10.0.0" |
33 | 33 | }, |
34 | 34 | "repository": { |
|
42 | 42 | "homepage": "https://github.com/vitejs/vite-ecosystem-ci#readme", |
43 | 43 | "dependencies": { |
44 | 44 | "@actions/core": "^3.0.0", |
45 | | - "cac": "^6.7.14", |
| 45 | + "cac": "^7.0.0", |
46 | 46 | "execa": "^9.6.1" |
47 | 47 | }, |
48 | 48 | "devDependencies": { |
49 | | - "@antfu/ni": "^28.3.0", |
50 | | - "@eslint/js": "^9.39.4", |
51 | | - "@types/node": "^22.19.15", |
| 49 | + "@antfu/ni": "^30.0.0", |
| 50 | + "@eslint/js": "^10.0.1", |
| 51 | + "@types/node": "^25.5.0", |
52 | 52 | "@types/pacote": "^11.1.8", |
53 | 53 | "@types/semver": "^7.7.1", |
54 | | - "eslint": "^9.39.4", |
| 54 | + "eslint": "^10.1.0", |
| 55 | + "eslint-config-prettier": "^10.1.8", |
55 | 56 | "eslint-plugin-n": "^17.24.0", |
56 | | - "lint-staged": "^15.5.2", |
| 57 | + "lint-staged": "^16.4.0", |
57 | 58 | "pacote": "^21.5.0", |
58 | 59 | "prettier": "^3.8.1", |
59 | 60 | "semver": "^7.7.4", |
60 | 61 | "simple-git-hooks": "^2.13.1", |
61 | | - "tsx": "^4.21.0", |
62 | 62 | "typescript": "^5.9.3", |
63 | | - "typescript-eslint": "^8.57.0" |
| 63 | + "typescript-eslint": "^8.57.2" |
64 | 64 | } |
65 | 65 | } |
0 commit comments