-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
72 lines (72 loc) · 1.52 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
{
"name": "seyfert",
"version": "2.1.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 --verbose --write --no-errors-on-unmatched ./src",
"test": "vitest run --config ./tests/vitest.config.mts ./tests/"
},
"author": "MARCROCK22",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"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"
}
],
"lint-staged": {
"*.ts": [
"biome check --write"
]
}
}