mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-31 07:50:07 +00:00
Bumps [@swc/core](https://github.com/swc-project/swc) from 1.15.2 to 1.15.3. - [Release notes](https://github.com/swc-project/swc/releases) - [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md) - [Commits](https://github.com/swc-project/swc/compare/v1.15.2...v1.15.3) --- updated-dependencies: - dependency-name: "@swc/core" dependency-version: 1.15.3 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>
52 lines
1.9 KiB
JSON
52 lines
1.9 KiB
JSON
{
|
|
"name": "@discordeno/bot",
|
|
"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-coverage": "c8 mocha --no-warnings 'tests/unit/**/*.spec.ts'",
|
|
"test:unit": "c8 --r lcov mocha --no-warnings 'tests/unit/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js discordeno",
|
|
"test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/unit/**/*.spec.ts'",
|
|
"test:deno-unit": "deno -A ../../node_modules/mocha/bin/mocha.js --config ../../.mocharc.base.cjs 'tests/unit/**/*.spec.ts'",
|
|
"test:bun-unit": "bun ../../node_modules/mocha/bin/mocha.js --config ../../.mocharc.base.cjs 'tests/unit/**/*.spec.ts'",
|
|
"test:e2e": "c8 --r lcov mocha --no-warnings --jobs 1 --t 30000 'tests/e2e/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js rest",
|
|
"test:type": "tsc --noEmit",
|
|
"test:test-type": "tsc --project tests/tsconfig.json"
|
|
},
|
|
"dependencies": {
|
|
"@discordeno/gateway": "workspace:^",
|
|
"@discordeno/rest": "workspace:^",
|
|
"@discordeno/types": "workspace:^",
|
|
"@discordeno/utils": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.3.7",
|
|
"@swc/cli": "^0.7.9",
|
|
"@swc/core": "^1.15.3",
|
|
"@types/chai": "^5.2.3",
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "^24.10.1",
|
|
"@types/sinon": "^21.0.0",
|
|
"c8": "^10.1.3",
|
|
"chai": "^6.2.1",
|
|
"mocha": "^11.7.5",
|
|
"sinon": "^21.0.0",
|
|
"ts-node": "^10.9.2",
|
|
"tsconfig": "*",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|