forked from tmijs/tmi.js-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.04 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
{
"name": "@streamygg/tmi.js",
"version": "2.0.0",
"description": "",
"type": "module",
"main": "./dist/tmi.node.mjs",
"browser": "./dist/tmi.esm-browser.min.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/tmi.index.d.ts",
"import": "./dist/tmi.node.mjs",
"require": "./dist/tmi.node.cjs",
"default": "./dist/tmi.node.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node --trace-warnings --loader tsx/esm src/test.ts",
"build": "node scripts/esbuild.js && tsc"
},
"files": [
"dist"
],
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"eventemitter3": "^5.0.1",
"isomorphic-ws": "^5.0.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/node": "^18.19.5",
"@types/ws": "^8.5.10",
"esbuild": "^0.19.11",
"esbuild-plugin-replace": "^1.4.0",
"tslib": "^2.6.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}