discord-commands-sync
Version:
A CLI tool to manage discord application commands
105 lines • 2.72 kB
JSON
{
"name": "discord-commands-sync",
"version": "1.2.4",
"description": "A CLI tool to manage discord application commands",
"keywords": [
"discord",
"discord.js",
"discord-interactions"
],
"homepage": "https://github.com/r-priyam/discord-commands-sync",
"bugs": {
"url": "https://github.com/r-priyam/discord-commands-sync/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/r-priyam/discord-commands-sync.git"
},
"license": "MIT",
"author": "r-priyam",
"sideEffects": "false",
"type": "module",
"main": "dist/index.js",
"bin": {
"dcs": "./dist/index.js",
"discord-commands-sync": "./dist/index.js"
},
"files": [
"dist/**/*.js"
],
"scripts": {
"build": "tsc -b src",
"clean": "node scripts/clean.mjs",
"commit": "git-cz",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src --ext ts --fix",
"prepack": "yarn build",
"prepare": "husky install .github/husky",
"release": "cliff-jumper",
"release:test": "cliff-jumper --dry-run --verbose",
"start": "node .",
"watch": "tsc -b src -w"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": "@sapphire"
},
"resolutions": {
"minimist": "^1.2.6"
},
"dependencies": {
"@discordjs/rest": "^0.4.1",
"ora": "^6.1.0",
"picocolors": "^1.0.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@favware/cliff-jumper": "^1.8.0",
"@favware/npm-deprecate": "^1.0.4",
"@sapphire/eslint-config": "^4.3.5",
"@sapphire/prettier-config": "^1.4.3",
"@sapphire/ts-config": "^3.3.4",
"@types/eslint": "^8",
"@types/node": "^17.0.29",
"@types/prettier": "^2",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"engines": {
"node": ">=v16"
},
"publishConfig": {
"access": "public"
},
"imports": {
"#functions/*": "./dist/functions/*.js",
"#lib/*": "./dist/lib/*.js"
},
"packageManager": "yarn@3.2.1"
}