seyfert/package.json
2024-03-11 14:32:41 -04:00

61 lines
1.5 KiB
JSON

{
"name": "seyfert",
"version": "0.1.0",
"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.5.3",
"discord-api-types": "^0.37.71",
"magic-bytes.js": "^1.7.0",
"ts-mixer": "^6.0.3",
"ws": "^8.16.0"
},
"lint-staged": {
"*.ts": ["biome check --apply", "biome format --write"]
},
"devDependencies": {
"@biomejs/biome": "1.6.0",
"@types/node": "^20.10.7",
"@types/ws": "^8.5.10",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"typescript": "^5.3.3"
},
"optionalDependencies": {
"ioredis": "^5.3.2",
"tweetnacl": "^1.0.3",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.39.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"
}
]
}