seyfert/package.json
Marcos Susaña e3b6f57741
chore: 3.1.0 (#339)
* perf: optimize members cache

* feat: components V2 (#337)

* feat: components v2

* fix: build

* chore: apply formatting

* refactor(components): some types

* refactor(types): replace TopLevelComponents with APITopLevelComponent in REST

* fix: unify components

* refactor(TextDisplay): rename content method to setContent for clarity

* refactor(builders): add missing builder from component

* fix: touche

* feat(webhook): webhook params for components v2

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* fix: use protected instead of private

* fix(editOrReply): accept flags when editing message

* feat: add onBeforeMiddlewares and onBeforeOptions (#338)

* chore: package version

---------

Co-authored-by: MARCROCK22 <marcos22dev@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: MARCROCK22 <57925328+MARCROCK22@users.noreply.github.com>
2025-04-27 01:21:56 -04:00

79 lines
1.6 KiB
JSON

{
"name": "seyfert",
"version": "3.1.0",
"description": "The most advanced framework for discord bots",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**"
],
"scripts": {
"build": "tsc --outDir ./lib",
"prepublishOnly": "npm run build",
"prepare": "npm run build && husky",
"lint": "biome lint --write ./src",
"format": "biome format --write ./src",
"check-h": "biome check --write ./src",
"check": "biome check --verbose --write --no-errors-on-unmatched ./src",
"test": "vitest run --config ./tests/vitest.config.mts ./tests/"
},
"author": "MARCROCK22",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/node": "^22.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"homepage": "https://seyfert.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/tiramisulabs/seyfert.git"
},
"bugs": {
"url": "https://github.com/tiramisulabs/seyfert"
},
"keywords": [
"api",
"discord",
"bots",
"typescript",
"botdev"
],
"publishConfig": {
"access": "public"
},
"maintainers": [
{
"name": "socram03",
"url": "https://github.com/socram03"
}
],
"contributors": [
{
"name": "Free 公園",
"url": "https://github.com/FreeAoi"
},
{
"name": "David",
"url": "https://github.com/Drylozu"
}
],
"lint-staged": {
"*.ts": [
"biome check --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild"
]
}
}