forked from akshaykmr/teletype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.2 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
86
87
88
89
{
"name": "oorja",
"description": "stream terminals to the web and more.",
"version": "1.7.0",
"author": "Akshay Kumar @akshaykmr",
"bin": {
"oorja": "./bin/run",
"teletype": "./bin/teletype"
},
"bugs": "https://github.com/akshaykmr/TeleType/issues",
"dependencies": {
"@msgpack/msgpack": "^2.8.0",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"axios": "^1.2",
"camelcase-keys": "^6.2.2",
"chalk": "^4",
"conf-cli": "^0.1.9",
"enquirer": "^2.3.6",
"node-pty": "^0.10.1",
"ora": "^4",
"term-size": "^2.2.0",
"tslib": "^1",
"ws": "^8.11"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@types/node": "^10",
"globby": "^10",
"prettier": "^2.0.5",
"ts-node": "^8",
"tslint": "^6.1.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^4.2.0",
"typescript": "^4.9.4",
"aws-sdk": "2.1282"
},
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://teletype.oorja.io",
"keywords": [
"teletype",
"terminal",
"sharing",
"oorja",
"cli"
],
"license": "SEE LICENSE IN license.txt",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "oorja",
"plugins": [
"@oclif/plugin-help",
"conf-cli"
],
"update": {
"s3": {
"host": "https://cli-dist-a327765.s3.amazonaws.com",
"bucket": "cli-dist-a327765"
}
}
},
"repository": "akshaykmr/TeleType",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc --skipLibCheck true && oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md",
"lint": "tslint -p ./tsconfig.json -t stylish",
"lint-fix": "tslint -p ./tsconfig.json -t stylish --fix",
"prettier": "prettier --write './**/*.{ts,tsx,js,css,html}'"
},
"types": "lib/index.d.ts",
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
}
}