{ "name": "@discordjs/util", "version": "0.1.0", "description": "Utilities shared across Discord.js packages", "scripts": { "build": "tsup", "test": "vitest run && tsd", "lint": "prettier --check . && TIMING=1 eslint src --ext .mjs,.js,.ts --format=pretty", "format": "prettier --write . && TIMING=1 eslint src --ext .mjs,.js,.ts --fix --format=pretty", "fmt": "yarn format", "docs": "api-extractor run --local", "prepack": "yarn lint && yarn test && yarn build", "changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/util/*'", "release": "cliff-jumper" }, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { "import": "./dist/index.mjs", "require": "./dist/index.js", "types": "./dist/index.d.ts" }, "directories": { "lib": "src" }, "files": [ "dist" ], "contributors": [ "Crawl ", "Amish Shah ", "Vlad Frangu ", "SpaceEEC ", "Aura Román " ], "license": "Apache-2.0", "keywords": [ "api", "bot", "client", "node", "discordjs" ], "repository": { "type": "git", "url": "https://github.com/discordjs/discord.js.git" }, "bugs": { "url": "https://github.com/discordjs/discord.js/issues" }, "homepage": "https://discord.js.org", "devDependencies": { "@favware/cliff-jumper": "^1.9.0", "@microsoft/api-extractor": "^7.33.6", "@types/node": "16.18.3", "@vitest/coverage-c8": "^0.25.2", "cross-env": "^7.0.3", "eslint": "^8.28.0", "eslint-config-neon": "^0.1.40", "eslint-formatter-pretty": "^4.1.0", "prettier": "^2.7.1", "tsd": "^0.24.1", "tsup": "^6.5.0", "typescript": "^4.9.3", "vitest": "^0.25.2" }, "engines": { "node": ">=16.9.0" }, "publishConfig": { "access": "public" }, "tsd": { "directory": "__tests__/types" } }