{ "name": "wichtelbot", "version": "2.0.0-dev", "description": "Ein Bot fürs Wichtöööln!", "main": "build/main.js", "author": "Benedikt Magnus", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/BenediktMagnus/Wichtelbot.git" }, "scripts": { "build": "tsc -p scripts/tsconfig.json", "build:release": "tsc -p scripts/tsconfig.release.json", "clean": "rm -rf build && rm -rf coverage", "coverage": "nyc npm run test", "coverage:coveralls": "nyc --reporter=lcov npm run test", "coverage:text": "nyc --reporter=text npm run test", "lint": "npm run lint:scripts && npm run lint:tests", "lint:scripts": "cd scripts && .eslint .", "lint:tests": "cd tests && .eslint .", "prepack": "npm run clean && npm run build:release", "prestart": "npm run build", "start": "node build/main.js", "test": "mocha -r ts-node/register/transpile-only -t 12000 'tests/**/*.ts'" }, "engines": { "node": ">=16.9.0" }, "dependencies": { "@discordjs/builders": "0.8.2", "@discordjs/rest": "0.1.0-canary.0", "better-sqlite3": "7.4.4", "discord-api-types": "0.24.0", "discord.js": "13.3.0" }, "devDependencies": { "@types/better-sqlite3": "7.4.1", "@types/chai": "4.2.22", "@types/mocha": "9.0.0", "@types/node": "16.11.6", "@typescript-eslint/eslint-plugin": "5.2.0", "@typescript-eslint/parser": "5.2.0", "eslint": "8.1.0", "chai": "4.3.4", "mocha": "9.1.3", "nyc": "15.1.0", "ts-node": "10.4.0", "ts-mockito": "2.6.1", "typescript": "4.4.4" }, "files": [ "build", "config/*.default", "data/*.sql", "docs", "locale", "LICENSE", "README.md" ], "private": true }