UNPKG

1.41 kBJSONView Raw
1{
2 "name": "@aws-sdk/util-base64-browser",
3 "version": "3.109.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:types": "tsc -p tsconfig.types.json",
12 "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13 "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14 "test": "jest"
15 },
16 "author": {
17 "name": "AWS SDK for JavaScript Team",
18 "url": "https://aws.amazon.com/javascript/"
19 },
20 "license": "Apache-2.0",
21 "dependencies": {
22 "tslib": "^2.3.1"
23 },
24 "devDependencies": {
25 "@tsconfig/recommended": "1.0.1",
26 "@types/node": "^10.0.0",
27 "concurrently": "7.0.0",
28 "downlevel-dts": "0.7.0",
29 "rimraf": "3.0.2",
30 "typedoc": "0.19.2",
31 "typescript": "~4.6.2"
32 },
33 "types": "./dist-types/index.d.ts",
34 "typesVersions": {
35 "<4.0": {
36 "dist-types/*": [
37 "dist-types/ts3.4/*"
38 ]
39 }
40 },
41 "files": [
42 "dist-*"
43 ],
44 "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/util-base64-browser",
45 "repository": {
46 "type": "git",
47 "url": "https://github.com/aws/aws-sdk-js-v3.git",
48 "directory": "packages/util-base64-browser"
49 }
50}