-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 728 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 728 Bytes
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
{
"name": "telecraft",
"module": "packages/cli/index.ts",
"type": "module",
"private": true,
"scripts": {
"check": "tsc --noEmit",
"make": "bun build --compile packages/cli/index.ts --outfile telecraft"
},
"devDependencies": {
"@types/bun": "latest",
"@types/irc": "^0.5.4",
"@types/leveldown": "^4.0.6",
"@types/levelup": "^5.1.5"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"arcsecond": "^5.0.0",
"axios": "^1.13.2",
"discord.js": "^14.24.2",
"iconv-lite": "^0.7.0",
"irc": "^0.5.2",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"mri": "^1.2.0",
"nbt-ts": "^1.3.6",
"p-event": "^7.0.0",
"telegraf": "^4.16.3"
},
"trustedDependencies": [
"iconv-lite"
]
}