butlerx
4 years ago
No known key found for this signature in database
GPG Key ID: B37CA765BAA89170
2 changed files with
9 additions and
2 deletions
-
package.json
-
src/main.ts
|
|
@ -1,12 +1,15 @@ |
|
|
|
{ |
|
|
|
"name": "wetty", |
|
|
|
"version": "2.0.0", |
|
|
|
"version": "2.0.1", |
|
|
|
"description": "WeTTY = Web + TTY. Terminal access in browser over http/https", |
|
|
|
"homepage": "https://github.com/butlerx/wetty", |
|
|
|
"license": "MIT", |
|
|
|
"type": "module", |
|
|
|
"bin": { |
|
|
|
"wetty": "./build/main.js" |
|
|
|
}, |
|
|
|
"main": "./build/main.js", |
|
|
|
"module": "./build/server.js", |
|
|
|
"exports": "./build/server.js", |
|
|
|
"files": [ |
|
|
|
"build/" |
|
|
|
], |
|
|
|
|
|
@ -1,6 +1,10 @@ |
|
|
|
#!/usr/bin/env node |
|
|
|
|
|
|
|
/** |
|
|
|
* Create WeTTY server |
|
|
|
* @module WeTTy |
|
|
|
* |
|
|
|
* This is the cli Interface for wetty. |
|
|
|
*/ |
|
|
|
import yargs from 'yargs'; |
|
|
|
import { logger } from './shared/logger.js'; |
|
|
|