File Explorer

/var/runtime/node_modules/@aws-sdk/util-waiter

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

1 dir
1 file
package.json1.5 KB · 56 lines
{  "name": "@aws-sdk/util-waiter",  "version": "3.374.0",  "description": "Shared utilities for client waiters for the AWS SDK",  "dependencies": {    "@smithy/util-waiter": "^1.0.1",    "tslib": "^2.5.0"  },  "scripts": {    "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",    "build:cjs": "tsc -p tsconfig.cjs.json",    "build:es": "tsc -p tsconfig.es.json",    "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",    "build:types": "tsc -p tsconfig.types.json",    "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",    "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",    "test": "exit 0"  },  "author": {    "name": "AWS SDK for JavaScript Team",    "url": "https://aws.amazon.com/javascript/"  },  "license": "Apache-2.0",  "main": "./dist-cjs/index.js",  "engines": {    "node": ">=14.0.0"  },  "typesVersions": {    "<4.0": {      "dist-types/*": [        "dist-types/ts3.4/*"      ]    }  },  "files": [    "dist-*/**"  ],  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/util-waiter",  "repository": {    "type": "git",    "url": "https://github.com/aws/aws-sdk-js-v3.git",    "directory": "packages/util-waiter"  },  "devDependencies": {    "@tsconfig/recommended": "1.0.1",    "concurrently": "7.0.0",    "downlevel-dts": "0.10.1",    "rimraf": "3.0.2",    "typedoc": "0.23.23",    "typescript": "~4.9.5"  },  "typedoc": {    "entryPoint": "src/index.ts"  }}