seyfert/package.json
Marcos Susaña cd445b19b2
chore: remove ts-mixer dependency (#223)
* feat: mixer

* feat(api): allow token in proxy options

* feat(member): timeout's

* chore: apply formatting

* fix: xd?

* fix: timeout reason

* fix: hasTimeout getter

* feat: mixer...

* fix: setter

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-07-24 21:41:24 -04:00

74 lines
1.7 KiB
JSON

{
"name": "seyfert",
"version": "1.5.0",
"description": "The most advanced framework for discord bots",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": ["lib/**", "deps/**"],
"scripts": {
"build": "npm run clean && tsc --outDir ./lib",
"prepublishOnly": "npm run build",
"prepare": "npm run build && husky",
"lint": "biome lint --write ./src",
"format": "biome format --write ./src",
"clean": "rimraf ./lib",
"check-h": "biome check --write ./src",
"check": "biome check --write --no-errors-on-unmatched ./src"
},
"author": "MARCROCK22",
"license": "Apache-2.0",
"dependencies": {
"magic-bytes.js": "^1.10.0",
"ws": "^8.18.0"
},
"lint-staged": {
"*.ts": ["biome check --write"]
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.14.11",
"@types/ws": "^8.5.11",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"rimraf": "5.0.9",
"typescript": "^5.5.3"
},
"optionalDependencies": {
"chokidar": "^3.6.0",
"ioredis": "^5.4.1",
"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"
},
"maintainers": [
{
"name": "socram03",
"url": "https://github.com/socram03"
}
],
"contributors": [
{
"name": "Free 公園",
"url": "https://github.com/FreeAoi"
},
{
"name": "David",
"url": "https://github.com/Drylozu"
}
]
}