-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.87 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "lg-bot-v1",
"version": "v8.0.0-Capi",
"author": "ghom",
"description": "Discord bot in TypeScript",
"main": "dist/index.js",
"type": "module",
"style": "options",
"imports": {
"#app": "./dist/app.js",
"#app/*": "./dist/*",
"#tables/*": "./dist/tables/*",
"#env": "./dist/app/env.js",
"#config": "./dist/config.js",
"#client": "./dist/app/client.js",
"#logger": "./dist/app/logger.js"
},
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"start": "npm run build && node dist/index",
"start.test": "npm run build && node tests/index.test.js",
"format": "prettier --write src tests",
"update": "gulp update",
"readme": "gulp readme",
"test": "npm run lint && tsc --noEmit && npm run start.test",
"lint": "eslint src/**/*.ts --fix"
},
"prettier": {
"semi": false,
"endOfLine": "crlf"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/bot-ts/framework.git"
},
"bugs": {
"url": "https://github.com/bot-ts/framework/issues"
},
"homepage": "https://github.com/bot-ts/framework#readme",
"dependencies": {
"@discordjs/rest": "^0.5.0",
"@ghom/handler": "^3.1.0",
"@ghom/logger": "^2.0.1",
"@ghom/orm": "^1.7.0",
"boxen": "^7.0.0",
"chalk": "^5.0.1",
"dayjs": "^1.11.3",
"dirname-filename-esm": "^1.1.1",
"discord.js": "^14.15.2",
"dotenv": "^16.0.1",
"figlet": "^1.5.2",
"ghom-eval": "^1.1.3",
"ghom-prettify": "^3.0.0",
"gulp-replace": "^1.1.4",
"knex": "^3.0.1",
"pg": "latest",
"prettier": "^3.2.5",
"regex-parser": "^2.2.11",
"short-unique-id": "^5.2.0",
"simple-git": "^3.24.0",
"tims": "^2.1.0",
"types-package-json": "^2.0.39",
"yargs-parser": "^21.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@esbuild/linux-x64": "^0.20.1",
"@ghom/bot.ts-cli": "^8.0.0",
"@types/fancy-log": "^2.0.0",
"@types/figlet": "^1.5.4",
"@types/gulp-filter": "^3.0.34",
"@types/gulp-rename": "^2.0.1",
"@types/node": "^20.12.7",
"@types/prettier": "^2.6.3",
"@types/vinyl-paths": "^0.0.31",
"@types/ws": "^8.5.3",
"@types/yargs-parser": "^21.0.0",
"del": "^6.1.1",
"discord-api-types": "^0.36.1",
"esbuild": "^0.19.5",
"esm": "^3.2.25",
"fancy-log": "^2.0.0",
"git-commit-info": "^2.0.1",
"gulp": "^4.0.2",
"gulp-esbuild": "^0.11.2",
"gulp-filter": "^7.0.0",
"gulp-rename": "^2.0.0",
"nodemon": "^2.0.19",
"typescript": "^5.4.0-beta",
"vinyl-paths": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.57.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"gulp-replace": "^1.1.4"
},
"engines": {
"node": ">=20.x.x",
"npm": ">=9.x.x",
"git": ">=2.x.x"
}
}