-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.74 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.74 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
{
"name": "discord.https",
"version": "3.0.16",
"description": "Discord.https is a modular library for building and managing Discord HTTP interactions with the Discord API. It provides tools for routing and managing interaction efficiently.",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"build": "tsc --build",
"start": "cd dist && node .",
"doc:build": "typedoc",
"doc:start": "http-server ./docs -a 127.0.0.1 -p 3000 -c-1"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./router": {
"import": "./dist/interactionRouter/index.js",
"types": "./dist/interactionRouter/index.d.ts"
}
},
"author": "discord.https",
"repository": {
"type": "git",
"url": "git+https://github.com/discord-http/discord.https.git"
},
"bugs": {
"url": "https://github.com/discord-http/discord.https/issues"
},
"homepage": "https://discordhttps.js.org",
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^1.12.2",
"@discordjs/collection": "^2.1.1",
"@discordjs/rest": "^2.6.0",
"@discordjs/util": "^1.1.1",
"@noble/ed25519": "^3.0.0",
"@sapphire/snowflake": "^3.5.5",
"chalk": "^5.6.2",
"discord-api-types": "^0.38.29"
},
"keywords": [
"discord",
"discord.js",
"discord-http-interactions",
"discord-interactions",
"http-interactions",
"discord.https",
"discord-api",
"interaction-router",
"discord-commands",
"discord-cloudflare"
],
"devDependencies": {
"discord.js": "^14.22.1",
"http-server": "^14.1.1",
"typedoc": "^0.28.13",
"typedoc-material-theme": "^1.4.0"
}
}