UNPKG

@m3rcena/weky

Version:

A fun npm package to play games within Discord with buttons!

78 lines 2.22 kB
{ "name": "@m3rcena/weky", "version": "10.4.2", "description": "A fun npm package to play games within Discord with buttons!", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/types/index.d.ts", "scripts": { "test": "npx tsx --tsconfig ./tsconfig.json ./src/main.ts", "test-cjs": "nodemon test/test.js", "release:prep": "npx copyfiles --flat ./package.json ./dist", "build:all": "npm run build:cjs && npm run build:esm && npm run build:types", "build:cjs": "tsc -p tools/config/tsconfig.cjs.json && tsc-alias -p tools/config/tsconfig.cjs.json", "build:esm": "tsc -p tools/config/tsconfig.esm.json && tsc-alias -p tools/config/tsconfig.esm.json", "build:types": "tsc -p tools/config/tsconfig.types.json && tsc-alias -p tools/config/tsconfig.types.json", "typecheck": "npx tsc --noEmit" }, "keywords": [ "weky", "discord-games" ], "homepage": "https://github.com/M3rcena/m3rcena-weky#readme", "bugs": { "url": "https://github.com/M3rcena/m3rcena-weky/issues" }, "author": { "name": "M3rcena", "url": "https://github.com/M3rcena" }, "repository": { "type": "git", "url": "git+https://github.com/M3rcena/m3rcena-weky.git" }, "contributors": [ "vuthanhtrung2010 <vuthanhtrungsuper@gmail.com>", "alex-724 <sahandsame31@gmail.com>" ], "dependencies": { "@napi-rs/canvas": "^0.1.68", "axios": "^1.8.4", "chalk": "^5.4.1", "cheerio": "^1.0.0", "discord.js": "^14.18.0", "html-entities": "^2.6.0", "mathjs": "^14.4.0", "node-fetch": "^3.3.2", "ofetch": "^1.4.1", "string-width": "^7.2.0", "util": "^0.12.5" }, "devDependencies": { "@types/node-fetch": "^2.6.12", "copyfiles": "^2.4.1", "nodemon": "^3.1.9", "tsc-alias": "^1.8.13", "typescript": "^5.8.2" }, "directories": { "test": "test" }, "license": "ISC", "exports": { "require": "./dist/cjs/index.js", "import": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "default": "./dist/cjs/index.js" }, "files": [ "Examples", "dist" ], "publishConfig": { "provenance": true }, "engines": { "node": ">=18.0.0" } }