UNPKG

@sapphire/plugin-pattern-commands

Version:

Plugin for @sapphire/framework that adds support for pattern commands.

90 lines 2.46 kB
{ "name": "@sapphire/plugin-pattern-commands", "version": "6.0.3", "description": "Plugin for @sapphire/framework that adds support for pattern commands.", "author": "@sapphire", "license": "MIT", "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" } }, "./register": { "import": { "types": "./dist/esm/register.d.mts", "default": "./dist/esm/register.mjs" }, "require": { "types": "./dist/cjs/register.d.cts", "default": "./dist/cjs/register.cjs" } } }, "sideEffects": [ "./dist/cjs/register.cjs", "./dist/esm/register.mjs" ], "homepage": "https://github.com/sapphiredev/plugins/tree/main/packages/pattern-commands", "scripts": { "lint": "eslint src --ext ts --fix", "build": "tsup && yarn build:types && yarn build:rename-cjs-register", "build:types": "concurrently \"yarn:build:types:*\"", "build:types:cjs": "rollup-type-bundler -d dist/cjs -ot .cts", "build:types:esm": "rollup-type-bundler -d dist/esm -t .mts", "build:types:cleanup": "tsx ../../scripts/clean-register-imports.mts", "build:rename-cjs-register": "tsx ../../scripts/rename-cjs-register.mts", "typecheck": "tsc -b src", "docs": "typedoc-json-parser", "prepack": "yarn build", "bump": "cliff-jumper", "check-update": "cliff-jumper --dry-run" }, "repository": { "type": "git", "url": "git+https://github.com/sapphiredev/plugins.git", "directory": "packages/pattern-commands" }, "files": [ "dist/" ], "engines": { "node": ">=v18", "npm": ">=7" }, "keywords": [ "sapphiredev", "plugin", "bot", "typescript", "ts", "yarn", "discord", "sapphire", "pattern-commands" ], "bugs": { "url": "https://github.com/sapphiredev/plugins/issues" }, "publishConfig": { "access": "public" }, "devDependencies": { "@favware/cliff-jumper": "^5.0.0", "@favware/rollup-type-bundler": "^3.3.0", "concurrently": "^9.0.1", "tsup": "^8.3.5", "tsx": "^4.19.2", "typedoc": "^0.26.11", "typedoc-json-parser": "^10.2.0", "typescript": "~5.4.5" } }