Skip to content

Commit

Permalink
Update npm deps
Browse files Browse the repository at this point in the history
Signed-off-by: Sora Morimoto <[email protected]>
  • Loading branch information
smorimoto committed Nov 12, 2024
1 parent d27f349 commit bd8fbce
Show file tree
Hide file tree
Showing 3 changed files with 3,178 additions and 2,494 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ jobs:

strategy:
matrix:
node: [16, 18, 20, 21]
node: [18, 20, 22]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false

steps:
- name: Checkout repo
Expand Down
29 changes: 17 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
Expand All @@ -37,33 +42,33 @@
"prepack": "pnpm build",
"release": "np",
"start": "pnpm build -- --watch",
"test": "vitest run",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"chalk": "^5.3.0",
"execa": "^8.0.1",
"execa": "^9.5.1",
"npm-run-path": "^6.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^6.0.0",
"@types/node": "^22.8.1",
"@vitest/coverage-v8": "^2.0.5",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.4",
"np": "*",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"sort-package-json": "^2.10.1",
"tsup": "^8.1.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.0.5"
"vite": "^5.4.11",
"vitest": "^2.1.4"
},
"peerDependencies": {
"rescript": ">=9",
"vite": ">=5.1.0"
},
"packageManager": "pnpm@8.11.0",
"packageManager": "pnpm@9.12.3",
"engines": {
"node": ">=16.0"
"node": ">=18.0"
}
}
Loading

0 comments on commit bd8fbce

Please sign in to comment.