-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 KB
/
package.json
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
{
"name": "@tmi.js/chat",
"version": "0.1.2",
"description": "Connect to Twitch IRC chat",
"keywords": [
"twitch",
"irc",
"chat",
"tmi.js"
],
"author": "Alca <[email protected]>",
"homepage": "https://github.com/tmijs/chat#readme",
"repository": "github:tmijs/chat",
"license": "MIT",
"type": "module",
"main": "./dist/tmi.node.mjs",
"browser": "./dist/tmi.browser.min.mjs",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=22"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/tmi.node.mjs",
"require": "./dist/tmi.node.cjs",
"default": "./dist/tmi.node.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist/* && node scripts/build.js && tsc",
"tsc-w": "tsc -w"
},
"devDependencies": {
"@types/node": "^22.13.4",
"esbuild": "^0.25.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@tmi.js/irc-parser": "^0.5.0"
}
}