mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-30 23:40:07 +00:00
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.7.2 to 5.7.3. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.7.2...v5.7.3) --- updated-dependencies: - dependency-name: typescript 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>
55 lines
2.1 KiB
JSON
55 lines
2.1 KiB
JSON
{
|
|
"name": "@discordeno/utils",
|
|
"version": "21.0.0",
|
|
"main": "./dist/esm/index.js",
|
|
"types": "./dist/types/index.d.ts",
|
|
"exports": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"import": "./dist/esm/index.js",
|
|
"require": "./dist/cjs/index.cjs"
|
|
},
|
|
"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 --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:unit:watch": "mocha --no-warnings --watch --parallel 'tests/**/*.spec.ts'",
|
|
"test:deno-unit": "deno -A ../../node_modules/mocha/bin/mocha.js --config ../../.mocharc.base.cjs 'tests/**/*.spec.ts'",
|
|
"test:bun-unit": "bun ../../node_modules/mocha/bin/mocha.js --config ../../.mocharc.base.cjs 'tests/**/*.spec.ts'",
|
|
"test:type": "tsc --noEmit",
|
|
"test:test-type": "tsc --project tests/tsconfig.json"
|
|
},
|
|
"dependencies": {
|
|
"@discordeno/types": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@swc/cli": "^0.5.2",
|
|
"@swc/core": "^1.10.12",
|
|
"@types/chai": "^5.0.1",
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "^22.13.0",
|
|
"@types/sinon": "^17.0.3",
|
|
"c8": "^10.1.3",
|
|
"chai": "^5.1.2",
|
|
"mocha": "patch:mocha@npm%3A11.0.2#~/.yarn/patches/mocha-npm-11.0.2-b5d6b95284.patch",
|
|
"sinon": "^19.0.2",
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig": "*",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|