mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "@discordeno/utils",
|
|
"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/**/*.spec.ts'",
|
|
"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.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"
|
|
}
|
|
}
|