mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-03 05:26:07 +00:00

* fix: mentionables defaults * feat: make message api components great * fix: add url to button link
64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "seyfert",
|
|
"version": "1.1.1",
|
|
"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 install",
|
|
"lint": "biome lint --apply ./src",
|
|
"format": "biome format --write ./src",
|
|
"check-h": "biome check --apply ./src",
|
|
"check": "biome check --apply --no-errors-on-unmatched ./src"
|
|
},
|
|
"author": "MARCROCK22",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"chokidar": "^3.6.0",
|
|
"discord-api-types": "^0.37.76",
|
|
"magic-bytes.js": "^1.10.0",
|
|
"ts-mixer": "^6.0.4",
|
|
"ws": "^8.16.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": ["biome check --apply", "biome format --write"]
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.6.0",
|
|
"@commitlint/cli": "^19.2.1",
|
|
"@commitlint/config-conventional": "^19.1.0",
|
|
"@types/node": "^20.11.30",
|
|
"@types/ws": "^8.5.10",
|
|
"husky": "^9.0.11",
|
|
"lint-staged": "^15.2.2",
|
|
"typescript": "^5.4.3"
|
|
},
|
|
"optionalDependencies": {
|
|
"ioredis": "^5.3.2",
|
|
"tweetnacl": "^1.0.3",
|
|
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.42.0"
|
|
},
|
|
"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"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "socram03",
|
|
"url": "https://github.com/socram03"
|
|
}
|
|
]
|
|
}
|