{ "name": "@discordeno/utils", "version": "20.0.0", "main": "./dist/esm/index.js", "exports": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.cjs", "types": "./dist/types/index.d.ts" }, "types": "./dist/types/index.d.ts", "type": "module", "license": "Apache-2.0", "repository": { "type": "git", "url": "https://github.com/discordeno/discordeno.git" }, "scripts": { "build": "swc src --strip-leading-paths --delete-dir-on-start src --out-dir dist/esm && swc --strip-leading-paths --delete-dir-on-start src --out-dir dist/cjs -C module.type=commonjs && node ../../scripts/fixCjsExtension.js", "build:type": "tsc --skipDefaultLibCheck --declaration --emitDeclarationOnly --declarationDir dist/types", "release-build": "yarn build && yarn build:type", "fmt": "biome format --write", "lint": "biome lint --write", "test:unit-coverage": "c8 mocha --no-warnings 'tests/**/*.spec.ts'", "test:unit": "c8 --r lcov mocha --no-warnings 'tests/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js utils", "test:deno-unit": "swc tests --strip-leading-paths --delete-dir-on-start -C jsc.minify.mangle=false --out-dir denoTestsDist && node ../../scripts/fixDenoTestExtension.js && deno test -A --import-map ../../denoImportMap.json denoTestsDist", "test:bun-unit": "node ../../scripts/fixBunTestExtension.js && bun test bunTestsDist", "test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/**/*.spec.ts'", "test:type": "tsc --noEmit", "test:test-type": "tsc --project tests/tsconfig.json" }, "dependencies": { "@discordeno/types": "20.0.0" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@swc/cli": "^0.5.1", "@swc/core": "^1.10.2", "@types/chai": "^5.0.1", "@types/mocha": "^10.0.10", "@types/node": "^22.9.1", "@types/sinon": "^17.0.3", "c8": "^10.1.2", "chai": "^5.1.2", "mocha": "^10.8.2", "sinon": "^19.0.2", "ts-node": "^10.9.2", "tsconfig": "*", "typescript": "^5.6.3" } }