@ethereumjs/rlp
Version:
Recursive Length Prefix Encoding Module
71 lines (70 loc) • 2.67 kB
JSON
{
"name": "@ethereumjs/rlp",
"version": "10.0.0",
"description": "Recursive Length Prefix Encoding Module",
"keywords": ["rlp", "ethereum"],
"homepage": "https://github.com/ethereumjs/ethereumjs-monorepo/tree/master/packages/rlp#readme",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-monorepo/issues?q=is%3Aissue+label%3A%22package%3A+rlp%22"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/ethereumjs-monorepo.git"
},
"license": "MPL-2.0",
"author": {
"name": "martin becze",
"email": "mjbecze@gmail.com"
},
"contributors": [
"Alex Beregszaszi <alex@rtfs.hu>",
"Holger Drewes <Holger.Drewes@gmail.com>",
"Paul Miller <pkg@paulmillr.com>"
],
"type": "module",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": {
"typescript": "./src/index.ts",
"default": "./dist/esm/index.js"
},
"require": "./dist/cjs/index.js"
}
},
"bin": {
"rlp": "bin/rlp.cjs"
},
"files": ["dist", "bin", "src"],
"scripts": {
"biome": "npx @biomejs/biome check",
"biome:fix": "npx @biomejs/biome check --write",
"benchmarks": "node ./benchmarks/index.js",
"build": "../../config/cli/ts-build.sh node",
"build:benchmarks": "npm run build && tsc -p tsconfig.benchmarks.json",
"clean": "../../config/cli/clean-package.sh",
"coverage": "DEBUG=ethjs npx vitest run -c ../../config/vitest.config.coverage.mts",
"coverage:istanbul": "DEBUG=ethjs npx vitest run -c ../../config/vitest.config.coverage.istanbul.mts",
"examples": "tsx ../../scripts/examples-runner.ts -- rlp",
"examples:build": "npx embedme README.md",
"lint": "npm run biome && eslint --config ./eslint.config.mjs .",
"lint:fix": "npm run biome:fix && eslint --fix --config ./eslint.config.mjs .",
"prepublishOnly": "../../config/cli/prepublish.sh",
"sc": "npm run spellcheck",
"spellcheck": "npm run spellcheck:ts && npm run spellcheck:md",
"spellcheck:ts": "npx cspell --gitignore -c ../../config/cspell-ts.json \"./**/*.ts\" --cache --show-suggestions --show-context",
"spellcheck:md": "npx cspell --gitignore -c ../../config/cspell-md.json \"**.md\" --cache --show-suggestions --show-context",
"test": "npm run test:node && npm run test:browser",
"test:browser": "npx vitest run --config=./vitest.config.browser.mts",
"test:node": "npx vitest run -c ../../config/vitest.config.mts",
"tsc": "../../config/cli/ts-compile.sh"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"benchmark": "^2.1.4"
}
}