Skip to content

Commit 29b68a8

Browse files
committed
Update dependencies
1 parent b557abb commit 29b68a8

File tree

3 files changed

+28
-21
lines changed

3 files changed

+28
-21
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
- ubuntu-latest
1616
- macos-latest
1717
steps:
18-
- uses: actions/checkout@v3
19-
- uses: actions/setup-node@v3
18+
- uses: actions/checkout@v4
19+
- uses: actions/setup-node@v4
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222
- run: npm install

package.json

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"types": "./dist/source/index.d.ts",
1616
"default": "./dist/source/index.js"
1717
},
18+
"sideEffects": false,
1819
"engines": {
1920
"node": ">=18"
2021
},
21-
"sideEffects": false,
2222
"scripts": {
2323
"test": "xo && npm run build && ava",
2424
"build": "del-cli dist && tsc",
@@ -47,30 +47,30 @@
4747
"cache"
4848
],
4949
"dependencies": {
50-
"ajv": "^8.12.0",
51-
"ajv-formats": "^2.1.1",
52-
"atomically": "^2.0.2",
53-
"debounce-fn": "^5.1.2",
54-
"dot-prop": "^8.0.2",
50+
"ajv": "^8.16.0",
51+
"ajv-formats": "^3.0.1",
52+
"atomically": "^2.0.3",
53+
"debounce-fn": "^6.0.0",
54+
"dot-prop": "^9.0.0",
5555
"env-paths": "^3.0.0",
5656
"json-schema-typed": "^8.0.1",
57-
"semver": "^7.5.4",
58-
"uint8array-extras": "^0.3.0"
57+
"semver": "^7.6.2",
58+
"uint8array-extras": "^1.1.0"
5959
},
6060
"devDependencies": {
6161
"@sindresorhus/tsconfig": "^5.0.0",
62-
"@types/node": "^20.8.8",
63-
"@types/semver": "^7.5.4",
64-
"ava": "^5.3.1",
62+
"@types/node": "^20.14.2",
63+
"@types/semver": "^7.5.8",
64+
"ava": "^6.1.3",
6565
"del": "^7.1.0",
6666
"del-cli": "^5.1.0",
6767
"delay": "^6.0.0",
68-
"p-event": "^6.0.0",
68+
"p-event": "^6.0.1",
6969
"tempy": "^3.1.0",
70-
"ts-node": "^10.9.1",
71-
"tsd": "^0.29.0",
72-
"typescript": "^5.2.2",
73-
"xo": "^0.56.0"
70+
"ts-node": "^10.9.2",
71+
"tsd": "^0.31.0",
72+
"typescript": "^5.4.5",
73+
"xo": "^0.58.0"
7474
},
7575
"ava": {
7676
"files": [
@@ -83,11 +83,13 @@
8383
},
8484
"nodeArguments": [
8585
"--loader=ts-node/esm"
86-
]
86+
],
87+
"workerThreads": false
8788
},
8889
"xo": {
8990
"rules": {
90-
"@typescript-eslint/ban-ts-comment": "off"
91+
"@typescript-eslint/ban-ts-comment": "off",
92+
"unicorn/prevent-abbreviations": "off"
9193
}
9294
}
9395
}

source/index.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ import fs from 'node:fs';
55
import path from 'node:path';
66
import crypto from 'node:crypto';
77
import assert from 'node:assert';
8-
import {getProperty, hasProperty, setProperty, deleteProperty} from 'dot-prop';
8+
import {
9+
getProperty,
10+
hasProperty,
11+
setProperty,
12+
deleteProperty,
13+
} from 'dot-prop';
914
import envPaths from 'env-paths';
1015
import {writeFileSync as atomicWriteFileSync} from 'atomically';
1116
import AjvModule, {type ValidateFunction as AjvValidateFunction} from 'ajv';

0 commit comments

Comments
 (0)