-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.58 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.58 KB
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
{
"name": "@ghom/bot.ts",
"version": "v9.0.0-Nirbose",
"author": "ghom",
"description": "A Discord bot in TypeScript made with [bot.ts](https://ghom.gitbook.io/bot-ts/)",
"main": "dist/index.js",
"type": "module",
"style": "options",
"imports": {
"#config": ["./src/config.ts", "./dist/config.js"],
"#types": ["./src/types.ts", "./dist/types.js"],
"#core/*": ["./src/core/*.ts", "./dist/core/*.js"],
"#tables/*": ["./src/tables/*.ts", "./dist/tables/*.js"],
"#buttons/*": ["./src/buttons/*.ts", "./dist/buttons/*.js"],
"#namespaces/*": ["./src/namespaces/*.ts", "./dist/namespaces/*.js"],
"#all": ["./src/core/index.ts", "./dist/core/index.js"]
},
"scripts": {
"bot": "bunx @ghom/bot.ts-cli",
"build": "rimraf dist && bunx rollup -c && bun run scripts/copy-keepers.js",
"final": "rimraf node_modules && bun install --production && bun run build",
"watch": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"start.test": "bun run src/index.test.ts",
"format": "bunx biome check --write src scripts package.json",
"update": "bun run scripts/update-framework.js",
"readme": "bun run build && bun run scripts/generate-readme.js",
"test": "bun run format && tsc --noEmit && bun run start.test"
},
"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": {
"@ghom/handler": "^3.1.0",
"@ghom/logger": "^2.0.2",
"@ghom/orm": "2.0.0",
"dayjs": "^1.11.13",
"discord-eval.ts": "1.1.4",
"discord.js": "^14.25.1",
"dotenv": "^16.5.0",
"ejs": "^3.1.10",
"node-cron": "^3.0.3",
"regex-parser": "^2.3.1",
"rimraf": "^6.0.1",
"simple-git": "^3.27.0",
"tims": "^2.1.0",
"types-package-json": "^2.0.39",
"yargs-parser": "^21.1.1",
"zod": "^3.24.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ghom/bot.ts-cli": "^9.1.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/bun": "^1.2.10",
"@types/deno": "^2.2.0",
"@types/node": "^22.15.2",
"@types/node-cron": "^3.0.11",
"@types/rollup": "^0.51.4",
"@types/yargs-parser": "^21.0.3",
"discord-api-types": "^0.37.120",
"fast-glob": "3.3.2",
"git-commit-info": "2.0.2",
"rollup": "^4.40.0",
"typescript": "^5.8.3"
},
"optionalDependencies": {
"@types/pg": "^8.11.14"
},
"engines": {
"node": ">=22.x.x",
"npm": ">=10.x.x",
"yarn": ">=1.22.22"
},
"trustedDependencies": ["@biomejs/biome"]
}