UNPKG

1.38 kBJSONView Raw
1{
2 "name": "@aws-sdk/util-utf8-browser",
3 "version": "3.109.0",
4 "description": "A browser UTF-8 string <-> 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 "types": "./dist-types/index.d.ts",
25 "typesVersions": {
26 "<4.0": {
27 "dist-types/*": [
28 "dist-types/ts3.4/*"
29 ]
30 }
31 },
32 "files": [
33 "dist-*"
34 ],
35 "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/util-utf8-browser",
36 "repository": {
37 "type": "git",
38 "url": "https://github.com/aws/aws-sdk-js-v3.git",
39 "directory": "packages/util-utf8-browser"
40 },
41 "devDependencies": {
42 "@tsconfig/recommended": "1.0.1",
43 "concurrently": "7.0.0",
44 "downlevel-dts": "0.7.0",
45 "rimraf": "3.0.2",
46 "typedoc": "0.19.2",
47 "typescript": "~4.6.2"
48 }
49}