n1cat-discord-script-manager
Version:
A Discord.js plugin for dynamic script management and execution
79 lines (78 loc) • 2.22 kB
JSON
{
"name": "n1cat-discord-script-manager",
"version": "5.6.5",
"description": "A Discord.js plugin for dynamic script management and execution",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:cjs && npm run build:esm && cp src/index.d.ts dist/index.d.cts && cp src/index.d.mts dist/index.d.mts && cp -r src/commands dist/commands && cp -r src/utils dist/utils",
"build:cjs": "esbuild src/index.js --bundle --platform=node --outfile=dist/index.cjs --format=cjs",
"build:esm": "esbuild src/index.js --bundle --platform=node --outfile=dist/index.mjs --format=esm",
"prepublishOnly": "npm run build",
"prepare": "husky",
"test": "jest --coverage",
"test:watch": "jest --watch",
"deploy": "node scripts/deploy-commands.js",
"format": "prettier --write \"**/*.{js,json,md}\""
},
"keywords": [
"discord",
"discord.js",
"bot",
"script",
"plugin",
"manager"
],
"author": "n1cat",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"discord.js": "^14.21.0",
"moment": "^2.30.1",
"node-fetch": "^2.7.0"
},
"engines": {
"node": ">=16.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n1cat/discord-script-manager.git"
},
"bugs": {
"url": "https://github.com/n1cat/discord-script-manager/issues"
},
"homepage": "https://github.com/n1cat/discord-script-manager#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"lint-staged": {
"**/*.{js,mjs,cjs}": "eslint --fix",
"**/*.{js,json,md}": "prettier --write"
},
"devDependencies": {
"@types/node": "^20.14.9",
"dotenv": "^16.4.5",
"esbuild": "^0.25.8",
"eslint": "^9.5.0",
"eslint-plugin-jest": "^29.0.1",
"husky": "^9.1.7",
"jest": "^30.0.5",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"typescript": "^5.5.2"
}
}