@djs-nest/core
Version:
Djs Nest Core Module provides functionality for handling discord events
107 lines • 2.78 kB
JSON
{
"name": "@djs-nest/core",
"version": "1.3.0",
"description": "Djs Nest Core Module provides functionality for handling discord events",
"author": "iam10k",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/djs-nest/djs-nest.git"
},
"bugs": {
"url": "https://github.com/djs-nest/djs-nest/issues"
},
"keywords": [
"nestjs",
"discord",
"discordjs",
"gateway",
"discord bot"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsup",
"dev": "tsup --watch",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/core/*'",
"release": "cliff-jumper"
},
"dependencies": {
"@djs-nest/common": "^1.3.0",
"@djs-nest/rest": "^1.2.0"
},
"peerDependencies": {
"@discordjs/core": "^0.4.0",
"@discordjs/ws": "^0.6.0",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0"
},
"optionalDependencies": {
"@discordjs/rest": "^1.6.0"
},
"devDependencies": {
"@discordjs/core": "^0.4.0",
"@discordjs/ws": "^0.7.0",
"@favware/cliff-jumper": "^2.0.0",
"@nestjs/common": "^9.3.9",
"@nestjs/core": "^9.3.9",
"@nestjs/testing": "^9.3.9",
"@types/jest": "29.4.0",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29.5.0",
"prettier": "latest",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.4.0",
"rxjs": "^7.2.0",
"ts-jest": "29.0.5",
"typescript": "^4.9.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
".*/index.ts$"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 80,
"lines": 90,
"statements": 90
}
}
},
"publishConfig": {
"access": "public"
}
}