UNPKG

asn1-ts

Version:

ASN.1 encoding and decoding, including BER, CER, and DER.

63 lines (62 loc) 1.66 kB
{ "bugs": { "email": "jonathan@wilbur.space", "url": "https://github.com/JonathanWilbur/asn1-ts/issues" }, "contributors": [ { "email": "jonathan@wilbur.space", "name": "Jonathan M. Wilbur", "url": "https://jonathan.wilbur.space/" } ], "description": "ASN.1 encoding and decoding, including BER, CER, and DER.", "devDependencies": { "@types/node": "^25.5.0", "typescript": "^6.0.2" }, "directories": { "doc": "documentation", "test": "test" }, "files": [ "dist/**/*" ], "homepage": "https://github.com/JonathanWilbur/asn1-ts", "keywords": [ "ASN1", "ASN.1", "X.690", "X690", "BER", "DER" ], "license": "MIT", "main": "./dist/index.mjs", "name": "asn1-ts", "private": false, "repository": { "type": "git", "url": "https://github.com/JonathanWilbur/asn1-ts.git" }, "scripts": { "benchmark": "node ./test/benchmark.mjs", "build": "npx tsc", "buntest": "bun test", "clean": "rm -rf dist; mkdir -p dist", "denocheck": "deno test ./denotest.mts", "test": "node --test" }, "types": "./dist/index.d.mts", "version": "11.1.0", "exports": { ".": { "import": "./dist/index.mjs", "types": "./dist/index.d.mts" }, "./functional": { "import": "./dist/functional.mjs", "types": "./dist/functional.d.mts" } } }