Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jun 14, 2024
1 parent b557abb commit 29b68a8
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- ubuntu-latest
- macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
38 changes: 20 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"types": "./dist/source/index.d.ts",
"default": "./dist/source/index.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"sideEffects": false,
"scripts": {
"test": "xo && npm run build && ava",
"build": "del-cli dist && tsc",
Expand Down Expand Up @@ -47,30 +47,30 @@
"cache"
],
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"atomically": "^2.0.2",
"debounce-fn": "^5.1.2",
"dot-prop": "^8.0.2",
"ajv": "^8.16.0",
"ajv-formats": "^3.0.1",
"atomically": "^2.0.3",
"debounce-fn": "^6.0.0",
"dot-prop": "^9.0.0",
"env-paths": "^3.0.0",
"json-schema-typed": "^8.0.1",
"semver": "^7.5.4",
"uint8array-extras": "^0.3.0"
"semver": "^7.6.2",
"uint8array-extras": "^1.1.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/node": "^20.8.8",
"@types/semver": "^7.5.4",
"ava": "^5.3.1",
"@types/node": "^20.14.2",
"@types/semver": "^7.5.8",
"ava": "^6.1.3",
"del": "^7.1.0",
"del-cli": "^5.1.0",
"delay": "^6.0.0",
"p-event": "^6.0.0",
"p-event": "^6.0.1",
"tempy": "^3.1.0",
"ts-node": "^10.9.1",
"tsd": "^0.29.0",
"typescript": "^5.2.2",
"xo": "^0.56.0"
"ts-node": "^10.9.2",
"tsd": "^0.31.0",
"typescript": "^5.4.5",
"xo": "^0.58.0"
},
"ava": {
"files": [
Expand All @@ -83,11 +83,13 @@
},
"nodeArguments": [
"--loader=ts-node/esm"
]
],
"workerThreads": false
},
"xo": {
"rules": {
"@typescript-eslint/ban-ts-comment": "off"
"@typescript-eslint/ban-ts-comment": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}
7 changes: 6 additions & 1 deletion source/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import fs from 'node:fs';
import path from 'node:path';
import crypto from 'node:crypto';
import assert from 'node:assert';
import {getProperty, hasProperty, setProperty, deleteProperty} from 'dot-prop';
import {
getProperty,
hasProperty,
setProperty,
deleteProperty,
} from 'dot-prop';
import envPaths from 'env-paths';
import {writeFileSync as atomicWriteFileSync} from 'atomically';
import AjvModule, {type ValidateFunction as AjvValidateFunction} from 'ajv';
Expand Down

0 comments on commit 29b68a8

Please sign in to comment.