UNPKG

@zerospacegg/vynthra

Version:
82 lines 2.85 kB
{ "name": "@zerospacegg/vynthra", "version": "1.0.1", "description": "Discord bot for ZeroSpace.gg data", "main": "dist/cjs/lib/index.cjs", "module": "dist/esm/lib/index.js", "types": "dist/esm/lib/index.d.ts", "type": "module", "exports": { ".": { "types": "./dist/esm/lib/index.d.ts", "import": "./dist/esm/lib/index.js", "require": "./dist/cjs/lib/index.cjs" }, "./bot": { "types": "./dist/esm/bot/index.d.ts", "import": "./dist/esm/bot/index.js", "require": "./dist/cjs/bot/index.cjs" } }, "bin": { "vynthra-stats": "bin/stats.js", "stats": "bin/stats.js", "vynthra-bot": "bin/bot.js" }, "keywords": [ "zerospace", "discord", "bot", "rts", "game-data" ], "author": "baby shoGGoth and ZeroSpace.gg", "license": "ISC", "repository": { "type": "git", "url": "git+https://github.com/zerospace-gg/zsgg.git", "directory": "vynthra" }, "homepage": "https://github.com/zerospace-gg/zsgg/tree/main/vynthra#readme", "bugs": { "url": "https://github.com/zerospace-gg/zsgg/issues" }, "dependencies": { "chalk": "^4.1.2", "discord.js": "^14.20.0", "fuzzy": "^0.1.3", "marked": "^12.0.0", "oo-ascii-tree": "^1.112.0", "@zerospacegg/iolin": "0.10.0" }, "devDependencies": { "@types/node": "^20.0.0", "glob": "^10.3.10", "ts-node": "^10.9.2", "typescript": "^5.0.0" }, "engines": { "node": ">=16.0.0" }, "scripts": { "build": "pnpm run clean && pnpm run build:esm && pnpm run build:cjs", "build:esm": "tsc -p tsconfig.esm.json", "build:cjs": "cp -r dist/esm dist/cjs && node scripts/transform-to-cjs.cjs", "dev": "tsc --watch", "clean": "rm -rf dist", "test": "node --loader ts-node/esm test-comprehensive.ts", "test:watch": "node --loader ts-node/esm --watch test-comprehensive.ts", "test:coverage": "node --loader ts-node/esm --test --test-reporter spec --test-reporter-destination stdout --test-coverage test-comprehensive.ts", "test:unit": "node --loader ts-node/esm test-runner.ts test/(bot|lib)/(config|utils|deploy|subcommands|fuzzy|search|renderer|types|index).test.ts", "test:integration": "node --loader ts-node/esm test-runner.ts test/bot/integration.test.ts", "test:client": "node --loader ts-node/esm test-runner.ts test/bot/client.test.ts", "test:lib": "node --loader ts-node/esm test-runner.ts test/lib/", "test:bot": "node --loader ts-node/esm test-runner.ts test/bot/", "test:ci": "node --loader ts-node/esm --test --test-reporter spec --test-reporter-destination stdout --test-coverage test-comprehensive.ts", "posttest": "pnpm run lint", "lint": "tsc --noEmit", "bot": "node bin/bot.js", "bot:deploy": "node bin/bot.js deploy", "bot:start": "node bin/bot.js start" } }