UNPKG

binarytf

Version:
101 lines 2.61 kB
{ "name": "binarytf", "version": "2.1.3", "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", "types": "./dist/index.d.ts" }, "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" }