|
20 | 20 | "bugs": { |
21 | 21 | "url": "https://github.com/neefrehman/make-matrix/issues" |
22 | 22 | }, |
23 | | - "files": ["src/**/*", "dist/**/*"], |
| 23 | + "files": [ |
| 24 | + "src/**/*", |
| 25 | + "dist/**/*" |
| 26 | + ], |
24 | 27 | "type": "module", |
25 | 28 | "sideEffects": false, |
26 | 29 | "exports": { |
27 | 30 | ".": { |
28 | 31 | "types": "./dist/index.d.ts", |
29 | | - "require": "./dist/index.cjs", |
30 | 32 | "import": "./dist/index.js", |
31 | 33 | "development": "./src/index.ts" |
32 | 34 | } |
|
42 | 44 | "build": "tsdown --config='scripts/build.ts'", |
43 | 45 | "preversion": "pnpm run check", |
44 | 46 | "version": "pnpm run build && pnpm run format:fix && git add -A src", |
45 | | - "postversion": "pnpm run benchmark:ci && pnpm run updateBadges && git push && git push --tags", |
46 | | - "updateBadges": "tsx scripts/update-badges.ts", |
47 | | - "pre-commit": "lint-staged", |
| 47 | + "postversion": "pnpm run benchmark:ci && node --experimental-strip-types scripts/update-badges.ts && git push && git push --tags", |
48 | 48 | "commit-msg": "commitlint -e", |
49 | 49 | "commitizen": "cz", |
50 | 50 | "commitlint": "commitlint", |
51 | | - "benchmark": "tsx scripts/run-benchmark.ts current", |
52 | | - "benchmark:ci": "tsx scripts/run-benchmark.ts current ci", |
53 | | - "benchmark:diff": "tsx scripts/run-benchmark.ts diff", |
54 | | - "benchmark:diff:ci": "tsx scripts/run-benchmark.ts diff ci" |
| 51 | + "benchmark": "node --experimental-strip-types scripts/run-benchmark.ts current", |
| 52 | + "benchmark:ci": "node --experimental-strip-types scripts/run-benchmark.ts current ci", |
| 53 | + "benchmark:diff": "node --experimental-strip-types scripts/run-benchmark.ts diff", |
| 54 | + "benchmark:diff:ci": "node --experimental-strip-types scripts/run-benchmark.ts diff ci" |
55 | 55 | }, |
56 | 56 | "devDependencies": { |
57 | 57 | "@actions/github": "6.0.1", |
58 | | - "@biomejs/biome": "1.9.4", |
| 58 | + "@biomejs/biome": "2.2.4", |
59 | 59 | "@commitlint/cli": "19.8.1", |
60 | 60 | "@commitlint/config-conventional": "19.8.1", |
61 | 61 | "@semantic-release/git": "10.0.1", |
| 62 | + "@types/node": "24.3.3", |
62 | 63 | "benny": "3.7.1", |
63 | 64 | "commitizen": "4.3.1", |
64 | 65 | "cz-conventional-changelog": "3.3.0", |
65 | | - "lint-staged": "15.5.2", |
66 | | - "semantic-release": "24.2.7", |
| 66 | + "semantic-release": "24.2.8", |
67 | 67 | "simple-git-hooks": "2.13.1", |
68 | | - "terser": "5.43.1", |
69 | | - "tsdown": "0.13.1", |
70 | | - "tsx": "^4.19.4", |
| 68 | + "tsdown": "0.15.1", |
71 | 69 | "typescript": "5.9.2", |
72 | 70 | "vitest": "3.2.4" |
73 | 71 | }, |
74 | | - "lint-staged": { |
75 | | - "*": [], |
76 | | - "*.(js|ts|tsx)": ["biome check --write", "vitest related --run --passWithNoTests"] |
77 | | - }, |
78 | 72 | "simple-git-hooks": { |
79 | | - "commit-msg": "npm run commit-msg", |
80 | | - "pre-commit": "npm run pre-commit" |
| 73 | + "commit-msg": "pnpm run commit-msg", |
| 74 | + "pre-commit": "pnpm run check:fix && pnpm run test" |
81 | 75 | }, |
82 | 76 | "commitlint": { |
83 | | - "extends": ["@commitlint/config-conventional"], |
| 77 | + "extends": [ |
| 78 | + "@commitlint/config-conventional" |
| 79 | + ], |
84 | 80 | "rules": { |
85 | | - "body-max-line-length": [1, "always", 100] |
| 81 | + "body-max-line-length": [ |
| 82 | + 1, |
| 83 | + "always", |
| 84 | + 100 |
| 85 | + ] |
86 | 86 | } |
87 | 87 | }, |
88 | 88 | "config": { |
89 | 89 | "commitizen": { |
90 | 90 | "path": "./node_modules/cz-conventional-changelog" |
91 | 91 | } |
92 | 92 | }, |
93 | | - "packageManager": "pnpm@9.9.0" |
| 93 | + "packageManager": "pnpm@10.15.1" |
94 | 94 | } |
0 commit comments