UNPKG

@isdk/bigint

Version:

The BigInteger class wrapped bn.js and native BitInt

71 lines 1.99 kB
{ "name": "@isdk/bigint", "version": "1.0.1", "packageManager": "pnpm@7.27.1", "description": "The BigInteger class wrapped bn.js and native BitInt", "author": "Riceball LEE <snowyu.lee@gmail.com>", "license": "MIT", "homepage": "https://github.com/isdk/bigint.js/#readme", "bug": "https://github.com/isdk/bigint.js/issues", "publishConfig": { "access": "public" }, "keywords": [ "big-int", "bigint", "class", "int", "integer", "number", "arithmetic", "algorithm" ], "exports": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "import": "./dist/index.mjs" }, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "src", "docs", "dist" ], "maintainers": [ "Riceball LEE <snowyu.lee@gmail.com>" ], "dependencies": { "bn.js": "^5.2.1" }, "devDependencies": { "@antfu/eslint-config": "^0.35.3", "@typescript-eslint/eslint-plugin": "^5.53.0", "bumpp": "^9.0.0", "eslint": "^8.35.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-tsdoc": "^0.2.17", "prettier": "^2.8.4", "tsup": "^6.6.3", "typedoc": "^0.23.26", "typedoc-plugin-markdown": "^3.14.0", "typescript": "^4.9.5", "vite": "^4.1.4", "vitest": "^0.29.1" }, "scripts": { "build-fast": "tsup", "build": "pnpm run build-fast --dts-resolve --dts && pnpm run doc:md", "doc": "typedoc --plugin none --out web", "doc:md": "typedoc --plugin typedoc-plugin-markdown --out docs", "style": "pnpm run format -c && pnpm run lint", "style:fix": "pnpm run format:fix && npm run lint:fix", "format": "prettier \"**/*.{ts,tsx,js,jsx,css,scss,sass,less,md}\"", "format:fix": "pnpm run format --write", "lint": "eslint .", "lint:fix": "pnpm run lint --fix", "test": "vitest run", "release": "bumpp package.json --commit --push --tag && pnpm publish --access public" } }