UNPKG

@radixdlt/radix-engine-toolkit

Version:

A TypeScript wrapper for the Radix Engine Toolkit that provides many of the necessary tools to interact with the Radix ledger

73 lines (72 loc) 2.1 kB
{ "name": "@radixdlt/radix-engine-toolkit", "version": "1.0.6", "description": "A TypeScript wrapper for the Radix Engine Toolkit that provides many of the necessary tools to interact with the Radix ledger", "types": "./dist/index.d.ts", "main": "./dist/radix-engine-toolkit.umd.js", "module": "./dist/radix-engine-toolkit.mjs", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/radix-engine-toolkit.mjs" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/radix-engine-toolkit.umd.js" } } }, "readme": "README.md", "keywords": [ "Radix", "ledger", "transaction", "radixdlt" ], "homepage": "https://github.com/radixdlt/typescript-radix-engine-toolkit", "repository": { "type": "git", "url": "https://github.com/radixdlt/typescript-radix-engine-toolkit" }, "bugs": "https://github.com/radixdlt/typescript-radix-engine-toolkit/issues", "files": [ "dist" ], "license": "Apache-2.0", "scripts": { "build": "rm -rf dist; vite build && yarn build:types", "build:types": "tsc --project tsconfig.types.json --emitDeclarationOnly", "format": "prettier --write .", "test": "vitest", "ci": "yarn build && vitest run", "prep": "yarn run format; yarn run build; yarn run test", "license": "python3 add_license.py" }, "devDependencies": { "@rollup/plugin-wasm": "6.2.2", "@types/node": ">=22.13.10", "@vitest/ui": "3.0.9", "happy-dom": "20.0.2", "prettier": "3.5.3", "prettier-plugin-organize-imports": "4.1.0", "ts-node": "10.9.2", "typescript": "5.8.2", "vite": "6.4.1", "vitest": "3.0.9" }, "dependencies": { "@noble/ed25519": "^2.2.3", "@noble/hashes": "^1.7.1", "@types/secp256k1": "^4.0.6", "@types/secure-random": "^1.1.3", "blakejs": "^1.2.1", "change-case": "^5.4.4", "decimal.js": "^10.5.0", "reflect-metadata": "^0.2.2", "secp256k1": "^5.0.1" }, "publishConfig": { "registry": "https://registry.npmjs.org" } }