-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.45 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.45 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
{
"name": "@hedystia/discord",
"version": "2.0.1",
"description": "A modern, type-safe Discord client library for Bun and Node.js",
"scripts": {
"build": "tsdown --config-loader unrun",
"release:pkg": "bun publish --provenance --access public",
"dev": "tsdown --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hedystia/Client.git"
},
"author": {
"name": "Zastinian",
"email": "contact@zastinian.com",
"url": "https://github.com/Zastinian"
},
"type": "commonjs",
"types": "./dist/index.d.cts",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.cts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@types/bun": "^1.3.3",
"@types/ws": "^8.18.1",
"tsdown": "^0.21.7"
},
"dependencies": {
"discord-api-types": "^0.38.43",
"ws": "^8.20.0"
},
"bugs": {
"url": "https://github.com/Hedystia/Client/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/Hedystia/Client",
"keywords": [
"discord",
"api",
"client",
"typescript",
"websocket",
"ws",
"bun"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"typescript": ">= 6.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}