Files
discordeno/packages/utils/package.json
dependabot[bot] 6117f569d4 build(deps-dev): bump mocha from 11.7.5 to 11.7.6 (#5041)
Bumps [mocha](https://github.com/mochajs/mocha) from 11.7.5 to 11.7.6.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/v11.7.6/CHANGELOG.md)
- [Commits](https://github.com/mochajs/mocha/compare/v11.7.5...v11.7.6)

---
updated-dependencies:
- dependency-name: mocha
  dependency-version: 11.7.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Awesome Stickz <awesome@stickz.dev>
2026-06-02 20:44:30 +05:30

46 lines
1.3 KiB
JSON

{
"name": "@discordeno/utils",
"version": "22.0.0-beta.1",
"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/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js utils",
"test:deno-unit": "deno -A npm:mocha 'tests/**/*.spec.ts'",
"test:bun-unit": "bun --bun mocha 'tests/**/*.spec.ts'",
"test:test-type": "tsc --project tests/tsconfig.json",
"test:type": "tsc --noEmit"
},
"dependencies": {
"@discordeno/types": "workspace:^"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.40",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.9.1",
"@types/sinon": "^21.0.1",
"c8": "^11.0.0",
"chai": "^6.2.2",
"mocha": "^11.7.6",
"sinon": "^22.0.0",
"ts-node": "^10.9.2",
"tsconfig": "*",
"typescript": "^6.0.3"
}
}