UNPKG

@sapphire/framework

Version:

Discord bot framework built for advanced and amazing bots.

127 lines 3.64 kB
{ "name": "@sapphire/framework", "version": "5.3.6", "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": "tsup", "bump": "cliff-jumper", "check-update": "cliff-jumper --dry-run", "prepack": "yarn build && concurrently \"yarn:prepack:*\"", "prepack:cjs": "rollup-type-bundler -d dist/cjs --output-typings-file-extension .cts", "prepack:esm": "rollup-type-bundler -d dist/esm -t .mts" }, "dependencies": { "@discordjs/builders": "^1.11.2", "@sapphire/discord-utilities": "^3.5.0", "@sapphire/discord.js-utilities": "^7.3.3", "@sapphire/lexure": "^1.1.10", "@sapphire/pieces": "^4.4.1", "@sapphire/ratelimits": "^2.4.11", "@sapphire/result": "^2.7.2", "@sapphire/stopwatch": "^1.5.4", "@sapphire/utilities": "^3.18.2" }, "devDependencies": { "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@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.1", "@types/node": "^22.15.21", "@types/ws": "^8.18.1", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "@vitest/coverage-v8": "^3.1.4", "concurrently": "^9.1.2", "cz-conventional-changelog": "^3.3.0", "discord.js": "^14.19.3", "esbuild-plugin-file-path-extensions": "^2.1.4", "esbuild-plugin-version-injector": "^1.2.1", "eslint": "^8.57.1", "eslint-config-prettier": "^10.1.5", "eslint-plugin-deprecation": "^3.0.0", "eslint-plugin-prettier": "^5.4.0", "gen-esm-wrapper": "^1.1.3", "lint-staged": "^16.0.0", "prettier": "^3.5.3", "tsup": "^8.4.0", "typedoc": "^0.26.11", "typedoc-json-parser": "^10.2.0", "typescript": "~5.4.5", "vite": "^6.3.5", "vitest": "^3.1.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.9.1" }