-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"author": "@kibotrel",
"bugs": "https://github.com/kibotrel/discordbox/issues",
"dependencies": {
"chalk": "5.3.0",
"discord.js": "14.15.3"
},
"description": "framework for discord bots written in typescript",
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"@vitest/coverage-v8": "1.6.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-custom-alias": "1.3.2",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.5.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.4.0",
"eslint-plugin-sonarjs": "0.24.0",
"eslint-plugin-tsdoc": "0.3.0",
"eslint-plugin-unicorn": "51.0.1",
"eslint-plugin-vitest": "0.5.4",
"husky": "9.0.11",
"nodemon": "3.1.4",
"prettier": "3.3.2",
"ts-node": "10.9.2",
"typescript": "5.5.2",
"vitest": "1.6.0"
},
"engines": {
"node": "20.14.0"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/kibotrel/discordbox#readme",
"license": "Apache-2.0",
"keywords": [
"bot",
"discord",
"discordjs",
"framework"
],
"main": "dist/src/index.js",
"name": "discordbox",
"repository": {
"type": "git",
"url": "https://github.com/kibotrel/discordbox.git"
},
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"format": "prettier --write src/**/*.ts",
"lint": "eslint src/**/*.ts --config .eslintrc",
"postversion": "git push && git push --tags",
"prepare": "pnpm run build && pnpm husky",
"prepublishOnly": "pnpm run test && pnpm run lint",
"preversion": "pnpm run lint",
"test": "vitest run",
"version": "pnpm run format && git add -A src"
},
"type": "module",
"types": "dist/src/index.d.ts",
"version": "1.1.1"
}