-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 942 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
{
"name": "@hyper-hyper-space/p2p-chat-cli",
"version": "0.2.0",
"description": "CLI client for p2p-chat, a chat library based on Hyper Hyper Space.",
"main": "dist/index.js",
"repository": "https://github.com/hyperhyperspace/p2p-chat-cli.git",
"author": "Santiago Bazerque",
"license": "MIT",
"private": false,
"source": "src/index.ts",
"types": "decl/index.d.ts",
"scripts": {
"build": "npx tsc",
"clean": "rm -rf ./decl/* ./dist/*",
"winclean": "if exist decl (rmdir decl /s /q) && mkdir decl && if exist dist (rmdir dist /s /q) && mkdir dist",
"start": "NODE_PATH=\"dist\" node ./dist/index.js",
"winstart": "./scripts/chat.bat"
},
"devDependencies": {
"typescript": "^4.3.5"
},
"dependencies": {
"@hyper-hyper-space/core": "0.9.0",
"@hyper-hyper-space/node-env": "0.11.0",
"@hyper-hyper-space/p2p-chat": "0.2.0",
"@types/node": "^12.0.0",
"tslib": "^2.3.1"
}
}