forked from tiramisulabs/seyfert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"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/**"
],
"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 --write --no-errors-on-unmatched ./src"
},
"author": "MARCROCK22",
"license": "Apache-2.0",
"dependencies": {
"discord-api-types": "github:tiramisulabs/discord-api-types",
"magic-bytes.js": "^1.10.0",
"ts-mixer": "^6.0.4",
"ws": "^8.18.0"
},
"lint-staged": {
"*.ts": [
"biome check --write"
]
},
"devDependencies": {
"@biomejs/biome": "1.8.1",
"@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",
"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"
},
"contributors": [
{
"name": "socram03",
"url": "https://github.com/socram03"
}
]
}