-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1011 Bytes
/
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
{
"name": "@tmi.js/irc-parser",
"version": "0.4.2",
"description": "Parse IRC messages",
"type": "module",
"main": "./dist/index.mjs",
"browser": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
}
},
"scripts": {
"test": "node --experimental-test-coverage test/index.mjs",
"build": "rm -rf dist/* && node scripts/esbuild.js && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmijs/irc-parser.git"
},
"keywords": [
"irc",
"parser",
"chat"
],
"author": "Alca",
"license": "MIT",
"bugs": {
"url": "https://github.com/tmijs/irc-parser/issues"
},
"homepage": "https://github.com/tmijs/irc-parser#readme",
"devDependencies": {
"@types/node": "^20.14.13",
"esbuild": "^0.23.0",
"typescript": "^5.5.4"
}
}