-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
45 lines (45 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
{
"name": "slate-irc",
"version": "0.9.5",
"description": "General purpose IRC client",
"keywords": [
"irc",
"client",
"chat"
],
"homepage": "https://github.com/slate/slate-irc",
"bugs": {
"url": "https://github.com/slate/slate-irc/issues"
},
"license": "MIT",
"contributors": [
"TJ Holowaychuk <[email protected]>",
"Hyeon Kim <[email protected]> (https://hyeon.me)"
],
"repository": "slate/slate-irc",
"dependencies": {
"debug": "^4.3.7",
"slate-irc-parser": "^0.1.6"
},
"devDependencies": {
"irc-replies": "^2.0.1",
"microbundle": "^0.15.1",
"prettier": "^3.3.3",
"vitest": "^2.1.2"
},
"scripts": {
"build": "microbundle -f cjs,modern --target node --compress",
"test": "vitest --run && prettier --check .",
"fmt": "prettier --write ."
},
"main": "dist/slate-irc.js",
"module": "dist/slate-irc.modern.mjs",
"files": [
"dist/*"
],
"prettier": {
"semi": false,
"singleQuote": true
},
"packageManager": "[email protected]"
}