-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.47 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.47 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"dependencies": {
"@discordjs/rest": "^2.5.1",
"async-and-quick": "^1.0.2",
"discord-api-types": "^0.37.100",
"discord-hybrid-sharding": "^2.2.6",
"discord.js": "^14.25.1",
"eta": "^3.5.0",
"jsdom": "^26.1.0",
"lodash": "^4.17.21",
"plsargs": "^0.1.6",
"snakecase-keys": "^8.0.1",
"stuffs": "^0.1.43",
"svelte": "^5.45.8",
"tslib": "^2.6.3"
},
"name": "@mostfeatured/dbi",
"version": "0.2.37",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
"svelte": [
"dist/types/svelte-dbi.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./svelte": {
"types": "./dist/types/svelte-dbi.d.ts"
}
},
"type": "commonjs",
"private": false,
"scripts": {
"test": "npx tsc && node dist/test",
"build": "npx tsc && xcopy /E /I /Y types dist\\types",
"prepublish": "npm run build",
"publish:dev": "npm run build && npm publish --tag dev",
"publish:release": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MostFeatured/DiscordBotInfrastructure.git"
},
"author": "Kıraç Armağan Önal",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/MostFeatured/DiscordBotInfrastructure/issues"
},
"homepage": "https://github.com/MostFeatured/DiscordBotInfrastructure#readme",
"description": "The most advanced, modern, and developer-friendly Discord.js v14 bot infrastructure with slash commands, components, localization, sharding, and Svelte UI support.",
"keywords": [
"discord",
"discord.js",
"discord-bot",
"bot-framework",
"bot-infrastructure",
"slash-commands",
"discord-interactions",
"discord-components",
"buttons",
"select-menu",
"modals",
"localization",
"i18n",
"sharding",
"hybrid-sharding",
"svelte",
"typescript",
"discord-api",
"chatinput",
"context-menu",
"rate-limiting",
"multi-client",
"hot-reload"
],
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.14.182",
"typescript": "^5.2.2"
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"peerDependenciesMeta": {
"svelte": {
"optional": true
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"generated"
]
}