seyfert/package.json
MARCROCK22 58e4eec159 1.0.1
2024-03-13 21:29:23 -04:00

73 lines
1.5 KiB
JSON

{
"name": "seyfert",
"version": "1.0.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 --changed --no-errors-on-unmatched ./src"
},
"author": "MARCROCK22",
"license": "ISC",
"dependencies": {
"chokidar": "^3.6.0",
"discord-api-types": "^0.37.73",
"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",
"@types/node": "^20.11.25",
"@types/ws": "^8.5.10",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"typescript": "^5.4.2"
},
"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"
}
]
}