UNPKG

@awsless/json

Version:

The `@awsless/json` package adds support for more JavaScript native types to JSON.

56 lines 1.14 kB
{ "name": "@awsless/json", "version": "0.0.8", "license": "MIT", "type": "module", "keywords": [ "JSON", "stringify", "parse", "BigInt", "BigFloat", "Map", "Set", "Date", "NaN", "Infinity", "RegExp", "Uint8Array", "Binary", "undefined", "extendable" ], "repository": { "type": "git", "url": "https://github.com/awsless/awsless.git" }, "bugs": { "url": "https://github.com/awsless/awsless/issues" }, "files": [ "dist" ], "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "require": "./dist/index.cjs", "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "peerDependencies": { "@awsless/big-float": "^0.0.4", "@awsless/duration": "^0.0.2" }, "devDependencies": { "@awsless/big-float": "^0.0.4", "@awsless/duration": "^0.0.2" }, "scripts": { "test": "pnpm code test", "build": "pnpm tsup src/index.ts --format cjs,esm --dts --clean", "prepublish": "if pnpm test; then pnpm build; else exit; fi" } }