Comparing version 2.1.2 to 2.1.3-next.1f63258.0
@@ -58,3 +58,3 @@ /// <reference lib="dom" /> | ||
clean(): void; | ||
read(): string | number | bigint | boolean | Record<any, any> | null | undefined; | ||
read(): {} | null | undefined; | ||
private readValueTypedArray; | ||
@@ -149,3 +149,3 @@ private readValueArrayBuffer; | ||
} | ||
declare type TypedArray = Uint8Array | Float32Array | Int32Array; | ||
type TypedArray = Uint8Array | Float32Array | Int32Array; | ||
declare const TypedArray: TypedArray; | ||
@@ -152,0 +152,0 @@ |
"use strict"; | ||
"use strict"; | ||
var BinaryTF = (() => { | ||
@@ -183,3 +182,6 @@ var __defProp = Object.defineProperty; | ||
TypedArrays2.constructors.map( | ||
(typedArray) => [Object.prototype.toString.call(new typedArray(new ArrayBuffer(0))), BinaryTokens[typedArray.name]] | ||
(typedArray) => ( | ||
// @ts-ignore 7015 | ||
[Object.prototype.toString.call(new typedArray(new ArrayBuffer(0))), BinaryTokens[typedArray.name]] | ||
) | ||
) | ||
@@ -189,3 +191,6 @@ ); | ||
TypedArrays2.constructors.map( | ||
(typedArray) => [BinaryTokens[typedArray.name], typedArray] | ||
(typedArray) => ( | ||
// @ts-ignore 7015 | ||
[BinaryTokens[typedArray.name], typedArray] | ||
) | ||
) | ||
@@ -192,0 +197,0 @@ ); |
"use strict"; | ||
"use strict"; | ||
var __defProp = Object.defineProperty; | ||
@@ -183,3 +182,6 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor; | ||
TypedArrays2.constructors.map( | ||
(typedArray) => [Object.prototype.toString.call(new typedArray(new ArrayBuffer(0))), BinaryTokens[typedArray.name]] | ||
(typedArray) => ( | ||
// @ts-ignore 7015 | ||
[Object.prototype.toString.call(new typedArray(new ArrayBuffer(0))), BinaryTokens[typedArray.name]] | ||
) | ||
) | ||
@@ -189,3 +191,6 @@ ); | ||
TypedArrays2.constructors.map( | ||
(typedArray) => [BinaryTokens[typedArray.name], typedArray] | ||
(typedArray) => ( | ||
// @ts-ignore 7015 | ||
[BinaryTokens[typedArray.name], typedArray] | ||
) | ||
) | ||
@@ -192,0 +197,0 @@ ); |
197
package.json
{ | ||
"name": "binarytf", | ||
"version": "2.1.2", | ||
"description": "Binary Term Format", | ||
"author": "kyranet <kyradiscord@gmail.com>", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"browser": "dist/index.global.js", | ||
"unpkg": "dist/index.global.js", | ||
"types": "dist/index.d.ts", | ||
"exports": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.js" | ||
}, | ||
"sideEffects": false, | ||
"homepage": "https://binarytf.github.io/binarytf", | ||
"scripts": { | ||
"docs": "typedoc", | ||
"lint": "eslint --fix src tests --ext ts", | ||
"format": "prettier --write \"{src,tests}/**/*.ts\"", | ||
"test": "jest", | ||
"update": "yarn upgrade-interactive", | ||
"build": "tsup && tsc -b src", | ||
"sversion": "standard-version", | ||
"prepublishOnly": "rollup-type-bundler", | ||
"prepare": "husky install .github/husky" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^17.1.2", | ||
"@commitlint/config-conventional": "^17.1.0", | ||
"@favware/rollup-type-bundler": "^1.0.11", | ||
"@sapphire/eslint-config": "^4.3.8", | ||
"@sapphire/prettier-config": "^1.4.4", | ||
"@sapphire/ts-config": "^3.3.4", | ||
"@types/jest": "^28.1.8", | ||
"@types/node": "^18.7.13", | ||
"@typescript-eslint/eslint-plugin": "^5.35.1", | ||
"@typescript-eslint/parser": "^5.35.1", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"esbuild-jest": "^0.5.0", | ||
"eslint": "^8.23.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"husky": "^8.0.1", | ||
"jest": "^29.0.1", | ||
"lint-staged": "^13.0.3", | ||
"prettier": "^2.7.1", | ||
"pretty-quick": "^3.1.3", | ||
"standard-version": "^9.5.0", | ||
"tsup": "^6.2.3", | ||
"typedoc": "^0.23.11", | ||
"typescript": "^4.8.2" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/binarytf/binarytf.git" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"engines": { | ||
"node": ">=v14.18.0", | ||
"npm": ">=7.24.2" | ||
}, | ||
"keywords": [ | ||
"binary", | ||
"term", | ||
"format", | ||
"serializer", | ||
"deserializer", | ||
"circular" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/binarytf/binarytf/issues" | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
] | ||
}, | ||
"lint-staged": { | ||
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-conventional-changelog" | ||
} | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"resolutions": { | ||
"ansi-regex": "^5.0.1", | ||
"minimist": "^1.2.6" | ||
}, | ||
"prettier": "@sapphire/prettier-config", | ||
"packageManager": "yarn@3.2.3" | ||
} | ||
"name": "binarytf", | ||
"version": "2.1.3-next.1f63258.0", | ||
"description": "Binary Term Format", | ||
"author": "kyranet <kyradiscord@gmail.com>", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"browser": "dist/index.global.js", | ||
"unpkg": "dist/index.global.js", | ||
"types": "dist/index.d.ts", | ||
"exports": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.js" | ||
}, | ||
"sideEffects": false, | ||
"homepage": "https://binarytf.github.io/binarytf", | ||
"scripts": { | ||
"docs": "typedoc", | ||
"lint": "eslint --fix src tests --ext ts", | ||
"format": "prettier --write .", | ||
"test": "vitest run", | ||
"build": "tsup", | ||
"typecheck": "tsc -p tsconfig.eslint.json", | ||
"bump": "cliff-jumper", | ||
"check-update": "cliff-jumper --dry-run", | ||
"_postinstall": "husky install .github/husky", | ||
"prepack": "yarn build && pinst --disable", | ||
"postpack": "pinst --enable" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^17.6.1", | ||
"@commitlint/config-conventional": "^17.6.1", | ||
"@favware/cliff-jumper": "^2.0.0", | ||
"@sapphire/eslint-config": "^4.4.1", | ||
"@sapphire/prettier-config": "^1.4.5", | ||
"@sapphire/ts-config": "^4.0.0", | ||
"@types/node": "^18.15.11", | ||
"@typescript-eslint/eslint-plugin": "^5.58.0", | ||
"@typescript-eslint/parser": "^5.58.0", | ||
"@vitest/coverage-c8": "^0.30.1", | ||
"cz-conventional-changelog": "^3.3.0", | ||
"eslint": "^8.38.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"husky": "^8.0.3", | ||
"lint-staged": "^13.2.1", | ||
"pinst": "^3.0.0", | ||
"prettier": "^2.8.7", | ||
"pretty-quick": "^3.1.3", | ||
"tsup": "^6.7.0", | ||
"typedoc": "^0.23.28", | ||
"typescript": "^5.0.4", | ||
"vitest": "^0.30.1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/binarytf/binarytf.git" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"engines": { | ||
"node": ">=v14.18.0", | ||
"npm": ">=7.24.2" | ||
}, | ||
"keywords": [ | ||
"binary", | ||
"term", | ||
"format", | ||
"serializer", | ||
"deserializer", | ||
"circular" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/binarytf/binarytf/issues" | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
"@commitlint/config-conventional" | ||
] | ||
}, | ||
"lint-staged": { | ||
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-conventional-changelog" | ||
} | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"resolutions": { | ||
"ansi-regex": "^5.0.1", | ||
"minimist": "^1.2.8" | ||
}, | ||
"prettier": "@sapphire/prettier-config", | ||
"packageManager": "yarn@3.5.0" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
218077
23
11
2458
1
1