mirror of
https://github.com/vatesfr/xen-orchestra.git
synced 2026-09-10 22:14:48 -05:00
* feat: add types for fs (#9515) * feat: add types for fs * fix: update from review * fix: update devDep * feat: add types from @xen-orchestra/fs/path * feat: export types based on async-each * fix: remove ts-expect-error because async-each is now typed * fix: export backups types and packages * fix: update tsconfig async-each and fix types in MergeRemoteDisk * fix: extractIdsFromSimplePattern from backups * fix: package.json * feat: export vhd-lib types * feat(disks): export types * fix(backups/disks): make params optional * fix(backups/disks): small update in jsdoc * bump: update yarn.lock * fix: update vhd-lib exports * fix(vhd-lib): update package exports * fix: revert to previous import * fix: new approach without exports * fix: revert types except for asyncEach, openDisk * fix(disks): import in vhd-lib * fix(remoteVhdDisk): update typedef
40 lines
871 B
JSON
40 lines
871 B
JSON
{
|
|
"private": false,
|
|
"name": "@vates/async-each",
|
|
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/@vates/async-each",
|
|
"description": "Run async fn for each item in (async) iterable",
|
|
"keywords": [
|
|
"array",
|
|
"async",
|
|
"collection",
|
|
"each",
|
|
"for",
|
|
"foreach",
|
|
"iterable",
|
|
"iterator"
|
|
],
|
|
"bugs": "https://github.com/vatesfr/xen-orchestra/issues",
|
|
"repository": {
|
|
"directory": "@vates/async-each",
|
|
"type": "git",
|
|
"url": "https://github.com/vatesfr/xen-orchestra.git"
|
|
},
|
|
"author": {
|
|
"name": "Vates SAS",
|
|
"url": "https://vates.fr"
|
|
},
|
|
"license": "ISC",
|
|
"types": "index.d.ts",
|
|
"version": "1.0.1",
|
|
"engines": {
|
|
"node": ">=8.10"
|
|
},
|
|
"scripts": {
|
|
"postversion": "npm publish --access public",
|
|
"test": "node --test"
|
|
},
|
|
"devDependencies": {
|
|
"sinon": "^18.0.0"
|
|
}
|
|
}
|