Skip to content

Commit

Permalink
chore: updates deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Jul 23, 2024
1 parent 22479d0 commit 14a9ecd
Show file tree
Hide file tree
Showing 13 changed files with 543 additions and 411 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"@hugomrdias/configs": "workspace:^",
"depcheck": "^1.4.7",
"simple-git-hooks": "^2.11.0",
"typedoc": "^0.25.12",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "5.4.5"
"typedoc": "^0.26.5",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "5.5.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec biome check --no-errors-on-unmatched --files-ignore-unknown=true --staged"
Expand Down
4 changes: 2 additions & 2 deletions packages/configs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"lint": "biome check --no-errors-on-unmatched --files-ignore-unknown=true"
},
"devDependencies": {
"@types/node": "^20.14.8",
"typescript": "5.4.5"
"@types/node": "^20.14.11",
"typescript": "5.5.4"
},
"publishConfig": {
"provenance": false
Expand Down
57 changes: 41 additions & 16 deletions packages/iso-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,43 +69,68 @@
},
"typesVersions": {
"*": {
"utils": ["dist/src/utils"],
"crypto": ["dist/src/crypto"],
"utf8": ["dist/src/utf8"],
"rfc4648": ["dist/src/rfc4648"],
"base-x": ["dist/src/base-x"],
"varint": ["dist/src/varint"],
"ec-compression": ["dist/src/ec-compression"],
"leb128": ["dist/src/leb128"]
"utils": [
"dist/src/utils"
],
"crypto": [
"dist/src/crypto"
],
"utf8": [
"dist/src/utf8"
],
"rfc4648": [
"dist/src/rfc4648"
],
"base-x": [
"dist/src/base-x"
],
"varint": [
"dist/src/varint"
],
"ec-compression": [
"dist/src/ec-compression"
],
"leb128": [
"dist/src/leb128"
]
}
},
"files": ["src", "dist/src/*.d.ts", "dist/src/*.d.ts.map"],
"files": [
"src",
"dist/src/*.d.ts",
"dist/src/*.d.ts.map"
],
"scripts": {
"lint": "tsc --build && biome check --no-errors-on-unmatched --files-ignore-unknown=true .",
"test": "tsc --build && pnpm run test:node && pnpm run test:browser",
"test:node": "mocha 'test/**/!(*.browser).test.js'",
"test:browser": "playwright-test 'test/**/!(*.node).test.js'"
},
"dependencies": {
"base-x": "^4.0.0",
"base-x": "^5.0.0",
"bigint-mod-arith": "^3.3.1"
},
"devDependencies": {
"@scure/base": "^1.1.7",
"@types/assert": "^1.5.10",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.8",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.11",
"assert": "^2.1.0",
"micro-bmark": "^0.3.1",
"mocha": "^10.3.0",
"mocha": "^10.7.0",
"playwright-test": "^14.1.1",
"typescript": "5.4.5"
"typescript": "5.5.4"
},
"publishConfig": {
"provenance": true
},
"depcheck": {
"specials": ["bin"],
"ignores": ["@types/*", "assert"]
"specials": [
"bin"
],
"ignores": [
"@types/*",
"assert"
]
}
}
14 changes: 7 additions & 7 deletions packages/iso-did/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,19 +80,19 @@
"did-resolver": "^4.1.0",
"iso-base": "workspace:^",
"iso-web": "workspace:^",
"multiformats": "^13.1.1"
"multiformats": "^13.2.0"
},
"devDependencies": {
"@noble/hashes": "^1.3.3",
"@types/assert": "^1.5.10",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.8",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.11",
"assert": "^2.1.0",
"mocha": "^10.3.0",
"msw": "^2.2.3",
"mocha": "^10.7.0",
"msw": "^2.3.3",
"playwright-test": "^14.1.1",
"type-fest": "^4.20.0",
"typescript": "5.4.5"
"type-fest": "^4.23.0",
"typescript": "5.5.4"
},
"publishConfig": {
"provenance": true
Expand Down
2 changes: 1 addition & 1 deletion packages/iso-did/test/mocks/mockServiceWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* - Please do NOT serve this file on production.
*/

const PACKAGE_VERSION = '2.3.1'
const PACKAGE_VERSION = '2.3.3'
const INTEGRITY_CHECKSUM = '26357c79639bfa20d64c0efca2a87423'
const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
const activeClientIds = new Set()
Expand Down
64 changes: 47 additions & 17 deletions packages/iso-filecoin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@
"url": "hugomrdias/iso-repo",
"directory": "packages/iso-filecoin"
},
"keywords": ["token", "filecoin", "crypto", "wallet"],
"keywords": [
"token",
"filecoin",
"crypto",
"wallet"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
Expand Down Expand Up @@ -52,17 +57,37 @@
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
"address": ["dist/src/address"],
"message": ["dist/src/message"],
"rpc": ["dist/src/rpc"],
"signature": ["dist/src/signature"],
"token": ["dist/src/token"],
"wallet": ["dist/src/wallet"],
"types": ["dist/src/types"],
"utils": ["dist/src/utils"]
"address": [
"dist/src/address"
],
"message": [
"dist/src/message"
],
"rpc": [
"dist/src/rpc"
],
"signature": [
"dist/src/signature"
],
"token": [
"dist/src/token"
],
"wallet": [
"dist/src/wallet"
],
"types": [
"dist/src/types"
],
"utils": [
"dist/src/utils"
]
}
},
"files": ["src", "dist/src/*.d.ts", "dist/src/*.d.ts.map"],
"files": [
"src",
"dist/src/*.d.ts",
"dist/src/*.d.ts.map"
],
"scripts": {
"lint": "tsc --build && biome check --no-errors-on-unmatched --files-ignore-unknown=true .",
"test": "tsc --build && pnpm run test:node && pnpm run test:browser",
Expand All @@ -71,7 +96,7 @@
},
"dependencies": {
"@ipld/dag-cbor": "^9.2.1",
"@noble/curves": "^1.3.0",
"@noble/curves": "^1.4.2",
"@noble/hashes": "^1.3.3",
"@scure/bip32": "^1.3.3",
"@scure/bip39": "^1.2.1",
Expand All @@ -82,18 +107,23 @@
},
"devDependencies": {
"@types/assert": "^1.5.10",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.8",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.11",
"assert": "^2.1.0",
"mocha": "^10.3.0",
"mocha": "^10.7.0",
"playwright-test": "^14.1.1",
"typescript": "5.4.5"
"typescript": "5.5.4"
},
"publishConfig": {
"provenance": true
},
"depcheck": {
"specials": ["bin"],
"ignores": ["@types/*", "assert"]
"specials": [
"bin"
],
"ignores": [
"@types/*",
"assert"
]
}
}
12 changes: 6 additions & 6 deletions packages/iso-kv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,19 @@
"test:browser": "playwright-test 'test/**/!(*.node).test.js'"
},
"dependencies": {
"conf": "^12.0.0",
"conf": "^13.0.1",
"idb-keyval": "^6.2.1",
"kysely": "^0.27.3"
"kysely": "^0.27.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/node": "^20.14.8",
"better-sqlite3": "^11.0.0",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^20.14.11",
"better-sqlite3": "^11.1.2",
"delay": "^6.0.0",
"playwright-test": "^14.1.1",
"quick-lru": "^7.0.0",
"tempy": "^3.1.0",
"typescript": "5.4.5"
"typescript": "5.5.4"
},
"publishConfig": {
"provenance": true
Expand Down
38 changes: 28 additions & 10 deletions packages/iso-passkeys/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@
"url": "hugomrdias/iso-repo",
"directory": "packages/iso-passkeys"
},
"keywords": ["webauthn", "passkeys", "authentication", "fido"],
"keywords": [
"webauthn",
"passkeys",
"authentication",
"fido"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
Expand All @@ -25,11 +30,19 @@
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
".": ["dist/src/index"],
"types": ["dist/src/types"]
".": [
"dist/src/index"
],
"types": [
"dist/src/types"
]
}
},
"files": ["src", "dist/src/*.d.ts", "dist/src/*.d.ts.map"],
"files": [
"src",
"dist/src/*.d.ts",
"dist/src/*.d.ts.map"
],
"scripts": {
"lint": "tsc --build && biome check --no-errors-on-unmatched --files-ignore-unknown=true .",
"test": "tsc --build && pnpm run test:node && pnpm run test:browser",
Expand All @@ -46,18 +59,23 @@
},
"devDependencies": {
"@types/assert": "^1.5.10",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.8",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.11",
"assert": "^2.1.0",
"mocha": "^10.3.0",
"mocha": "^10.7.0",
"playwright-test": "^14.1.1",
"typescript": "5.4.5"
"typescript": "5.5.4"
},
"publishConfig": {
"provenance": true
},
"depcheck": {
"specials": ["bin"],
"ignores": ["@types/*", "assert"]
"specials": [
"bin"
],
"ignores": [
"@types/*",
"assert"
]
}
}
10 changes: 5 additions & 5 deletions packages/iso-signatures/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@
},
"devDependencies": {
"@types/assert": "^1.5.10",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.8",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.11",
"assert": "^2.1.0",
"mocha": "^10.3.0",
"mocha": "^10.7.0",
"playwright-test": "^14.1.1",
"type-fest": "^4.20.0",
"typescript": "5.4.5"
"type-fest": "^4.23.0",
"typescript": "5.5.4"
},
"publishConfig": {
"provenance": true
Expand Down
8 changes: 4 additions & 4 deletions packages/iso-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^20.14.8",
"msw": "^2.2.3",
"@types/node": "^20.14.11",
"msw": "^2.3.3",
"playwright-test": "^14.1.1",
"type-fest": "^4.20.0",
"typescript": "5.4.5"
"type-fest": "^4.23.0",
"typescript": "5.5.4"
},
"publishConfig": {
"provenance": true
Expand Down
2 changes: 1 addition & 1 deletion packages/iso-web/test/mocks/mockServiceWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* - Please do NOT serve this file on production.
*/

const PACKAGE_VERSION = '2.3.1'
const PACKAGE_VERSION = '2.3.3'
const INTEGRITY_CHECKSUM = '26357c79639bfa20d64c0efca2a87423'
const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
const activeClientIds = new Set()
Expand Down
Loading

0 comments on commit 14a9ecd

Please sign in to comment.