Files
discordeno/packages/bot/package.json
T

50 lines
1.5 KiB
JSON

{
"name": "@discordeno/bot",
"version": "22.0.0-beta.2",
"exports": "./dist/index.js",
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/discordeno/discordeno.git"
},
"files": [
"dist/**",
"!dist/.tsbuildinfo"
],
"scripts": {
"build": "swc src --strip-leading-paths src --out-dir dist",
"build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"release-build": "yarn build && yarn build:type",
"check": "biome check --write",
"test:unit": "c8 -r lcov mocha 'tests/unit/**/*.spec.ts'",
"test:deno-unit": "deno -A npm:mocha 'tests/unit/**/*.spec.ts'",
"test:bun-unit": "bun --bun mocha 'tests/unit/**/*.spec.ts'",
"test:e2e": "c8 -r lcov mocha -t 30000 'tests/e2e/**/*.spec.ts'",
"test:test-type": "tsc --project tests/tsconfig.json",
"test:type": "tsc --noEmit"
},
"dependencies": {
"@discordeno/gateway": "workspace:^",
"@discordeno/rest": "workspace:^",
"@discordeno/types": "workspace:^",
"@discordeno/utils": "workspace:^"
},
"devDependencies": {
"@biomejs/biome": "2.5.9",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.16.1",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^26.2.0",
"@types/sinon": "^22.0.0",
"c8": "^12.0.0",
"chai": "^6.2.2",
"mocha": "^11.8.0",
"sinon": "^22.1.0",
"tsconfig": "*",
"tsx": "^4.23.12",
"typescript": "^6.0.3"
}
}