-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 873 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 873 Bytes
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
{
"name": "@hyper-hyper-space/examples",
"version": "0.0.1",
"description": "Examples for the Hyper Hyper Space library",
"main": "dist-chat/index.js",
"repository": "https://github.com/hyperhyperspace/examples.git",
"author": "Santiago Bazerque",
"license": "MIT",
"private": false,
"scripts": {
"build": "npx ttsc",
"clean": "rm -rf ./decl/* ./dist-chat/*",
"winclean": "if exist dist-chat (rmdir dist-chat /s /q) && mkdir dist-chat",
"start": "NODE_PATH=\"dist-chat\" node ./dist-chat/index.js",
"winstart": "./scripts/chat.bat"
},
"dependencies": {
"@hyper-hyper-space/core": "^0.6.3",
"@hyper-hyper-space/node-env": "^0.8.0",
"tslib": "^2.1.0"
},
"devDependencies": {
"@types/node": "^14.14.32",
"@zerollup/ts-transform-paths": "^1.7.18",
"ttypescript": "^1.5.12",
"typescript": "^4.2.3"
}
}