This repository has been archived by the owner on Aug 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.13 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "peerchat",
"description": "Peer-to-peer terminal chat",
"version": "0.1.5",
"author": "Mykhailo Marynenko @0x77dev",
"bin": {
"peerchat": "./bin/run",
"pchat": "./bin/run"
},
"bugs": "https://github.com/dstack-js/chat/issues",
"dependencies": {
"@dstack-js/ipfs": "^0.2.33",
"@dstack-js/lib": "^0.2.33",
"@dstack-js/wrtc": "0.4.8",
"@oclif/command": "^1",
"@oclif/config": "^1",
"blessed": "^0.1.81",
"discord.js": "^13.6.0",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"libp2p-webrtc-star": "0.20.1",
"libp2p-websockets": "^0.16.2",
"tslib": "^1"
},
"resolutions": {
"wrtc": "https://github.com/dstack-js/node-webrtc",
"socket.io-client": "^4.4.1",
"electron": "^17.1.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^5.1.10",
"@oclif/plugin-not-found": "^2.3.1",
"@oclif/plugin-warn-if-update-available": "^2.0.4",
"@types/blessed": "^0.1.19",
"@types/node": "^17.0.13",
"eslint": "^7.32.0",
"eslint-config-oclif": "^3.1.2",
"eslint-config-oclif-typescript": "^0.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-promise": "^6.0.0",
"ts-node": "^8",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"README.md"
],
"homepage": "https://github.com/dstack-js/chat",
"keywords": [
"oclif",
"blessed",
"dstack",
"ipfs",
"libp2p",
"peer-to-peer",
"chat",
"zero-configuration"
],
"license": "GPL-3.0",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "peerchat",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-warn-if-update-available"
]
},
"repository": "dstack-js/chat",
"scripts": {
"lint": "eslint . --ext .ts --config .eslintrc",
"posttest": "yarn lint",
"prepack": "rm -rf lib && tsc -b && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}