UNPKG

1.51 kBJSONView Raw
1{
2 "name": "@aws-sdk/util-base64-browser",
3 "version": "3.209.0",
4 "description": "A pure JS Base64 <-> UInt8Array converter",
5 "main": "./dist-cjs/index.js",
6 "module": "./dist-es/index.js",
7 "scripts": {
8 "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
9 "build:cjs": "tsc -p tsconfig.cjs.json",
10 "build:es": "tsc -p tsconfig.es.json",
11 "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
12 "build:types": "tsc -p tsconfig.types.json",
13 "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
14 "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
15 "test": "jest"
16 },
17 "author": {
18 "name": "AWS SDK for JavaScript Team",
19 "url": "https://aws.amazon.com/javascript/"
20 },
21 "license": "Apache-2.0",
22 "dependencies": {
23 "tslib": "^2.3.1"
24 },
25 "devDependencies": {
26 "@tsconfig/recommended": "1.0.1",
27 "@types/node": "^14.14.31",
28 "concurrently": "7.0.0",
29 "downlevel-dts": "0.10.1",
30 "rimraf": "3.0.2",
31 "typedoc": "0.19.2",
32 "typescript": "~4.6.2"
33 },
34 "types": "./dist-types/index.d.ts",
35 "typesVersions": {
36 "<4.0": {
37 "dist-types/*": [
38 "dist-types/ts3.4/*"
39 ]
40 }
41 },
42 "files": [
43 "dist-*"
44 ],
45 "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/util-base64-browser",
46 "repository": {
47 "type": "git",
48 "url": "https://github.com/aws/aws-sdk-js-v3.git",
49 "directory": "packages/util-base64-browser"
50 }
51}