-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "skychat-cli",
"version": "0.4.0",
"description": "Connect to a SkyChat instance using CLI",
"main": "lib/index.js",
"type": "module",
"files": [
"bin/**",
"lib/**",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"skychat-cli": "skychat-cli.js"
},
"author": "7PH <[email protected]>",
"license": "ISC",
"dependencies": {
"beautify-url": "^0.2.2",
"blessed": "^0.1.81",
"fs-extra": "^11.2.0",
"minimist": "^1.2.8",
"risibank-web-api": "^1.1.0",
"skychat": "^2.0.1",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
}
}