nyxo.js
Version:
Complete Next-Generation Discord Bot Framework with Type-Safe API, Auto-Caching, and Real-Time Gateway
82 lines • 1.88 kB
JSON
{
"$schema": "https://json.schemastore.org/package.json",
"name": "nyxo.js",
"version": "0.2.6",
"description": "Complete Next-Generation Discord Bot Framework with Type-Safe API, Auto-Caching, and Real-Time Gateway",
"keywords": [
"discord",
"bot",
"framework",
"discord-bot",
"typescript",
"type-safe",
"discord-api",
"gateway",
"websocket",
"rest",
"realtime",
"auto-cache",
"high-performance",
"builders",
"interactions",
"sharding",
"bot-framework"
],
"homepage": "https://github.com/AtsuLeVrai/nyxo.js",
"readme": "README.md",
"license": "Apache-2.0",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/AtsuLeVrai/nyxo.js",
"directory": "packages/nyxojs"
},
"bugs": {
"url": "https://github.com/AtsuLeVrai/nyxo.js/issues"
},
"author": {
"name": "AtsuLeVrai",
"url": "https://github.com/AtsuLeVrai"
},
"dependencies": {
"eventemitter3": "^5.0.1",
"reflect-metadata": "^0.2.2",
"zod": "^3.25.60",
"@nyxojs/core": "^0.2.4",
"@nyxojs/builders": "^0.2.5",
"@nyxojs/gateway": "^0.2.5",
"@nyxojs/store": "^0.2.5",
"@nyxojs/rest": "^0.2.5"
},
"devDependencies": {
"@types/node": "^22.15.31",
"rimraf": "^6.0.1",
"tsdown": "^0.12.7",
"typescript": "^5.8.3"
},
"scripts": {
"clean": "rimraf dist",
"build:dev": "rimraf dist && tsc -p tsconfig.json",
"build:prod": "tsdown",
"type-check": "tsc --noEmit"
}
}