UNPKG

@sapphire/framework

Version:

Discord bot framework built for advanced and amazing bots.

125 lines 3.56 kB
{ "name": "@sapphire/framework", "version": "5.5.0", "description": "Discord bot framework built for advanced and amazing bots.", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.mjs", "types": "dist/cjs/index.d.cts", "exports": { "import": { "types": "./dist/esm/index.d.mts", "default": "./dist/esm/index.mjs" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } }, "author": "@sapphire", "license": "MIT", "scripts": { "lint": "eslint src tests --ext mjs,ts --fix", "format": "prettier --write \"{src,tests}/**/*.ts\"", "docs": "typedoc-json-parser", "test": "vitest run", "test:watch": "vitest", "update": "yarn upgrade-interactive", "typecheck": "tsc -p tsconfig.eslint.json", "build": "tsdown", "bump": "cliff-jumper", "check-update": "cliff-jumper --dry-run", "prepack": "yarn build && concurrently \"yarn:prepack:*\"", "prepack:cjs": "rollup-type-bundler -d dist/cjs -t .cts --output-typings-file-extension .cts", "prepack:esm": "rollup-type-bundler -d dist/esm -t .mts" }, "dependencies": { "@discordjs/builders": "^1.13.0", "@sapphire/discord-utilities": "^4.0.0", "@sapphire/discord.js-utilities": "^7.3.3", "@sapphire/lexure": "^1.1.12", "@sapphire/pieces": "^4.4.1", "@sapphire/ratelimits": "^2.4.11", "@sapphire/result": "^2.8.0", "@sapphire/stopwatch": "^1.5.4", "@sapphire/utilities": "^3.18.2" }, "devDependencies": { "@commitlint/cli": "^20.1.0", "@commitlint/config-conventional": "^20.0.0", "@favware/cliff-jumper": "^6.0.0", "@favware/npm-deprecate": "^2.0.0", "@favware/rollup-type-bundler": "^4.0.0", "@sapphire/eslint-config": "^5.0.6", "@sapphire/node-utilities": "^1.0.2", "@sapphire/prettier-config": "^2.0.0", "@sapphire/ts-config": "^5.0.2", "@types/node": "^24.10.1", "@types/ws": "^8.18.1", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "@vitest/coverage-v8": "^3.2.4", "concurrently": "^9.2.1", "cz-conventional-changelog": "^3.3.0", "discord.js": "^14.24.2", "eslint": "^8.57.1", "eslint-config-prettier": "^10.1.8", "eslint-plugin-deprecation": "^3.0.0", "eslint-plugin-prettier": "^5.5.4", "lint-staged": "^16.2.7", "prettier": "^3.6.2", "tsdown": "^0.16.6", "typedoc": "^0.26.11", "typedoc-json-parser": "^10.2.0", "typescript": "~5.4.5", "unplugin-replace": "^0.6.2", "vite": "^7.2.4", "vitest": "^3.2.4" }, "repository": { "type": "git", "url": "git+https://github.com/sapphiredev/framework.git" }, "files": [ "dist/" ], "engines": { "node": ">=v18", "npm": ">=7" }, "keywords": [ "bot", "typescript", "ts", "yarn", "discord", "sapphire", "standalone" ], "bugs": { "url": "https://github.com/sapphiredev/framework/issues" }, "homepage": "https://www.sapphirejs.dev", "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "lint-staged": { "*": "prettier --ignore-unknown --write", "*.{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@4.10.3" }