-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 1.96 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
{
"name": "oorja",
"description": "stream terminals to the web and more.",
"version": "2.0.1",
"keywords": [
"teletype",
"terminal",
"sharing",
"oorja",
"cli"
],
"homepage": "https://github.com/akshaykmr/teletype",
"bugs": "https://github.com/akshaykmr/teletype/issues",
"repository": "akshaykmr/teletype",
"license": "SEE LICENSE IN license.txt",
"author": "Akshay Kumar",
"type": "module",
"exports": "./lib/index.js",
"types": "dist/index.d.ts",
"bin": {
"oorja": "./bin/run.js",
"teletype": "./bin/teletype.js"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts",
"prepack": "yarn build && oclif manifest && oclif readme",
"postpack": "shx rm -f oclif.manifest.json",
"prepare": "yarn build",
"version": "oclif readme && git add README.md",
"format": "prettier --write ."
},
"oclif": {
"bin": "oorja",
"commands": "./dist/commands",
"dirname": "oorja",
"plugins": [
"@oclif/plugin-help",
"conf-cli"
]
},
"dependencies": {
"@msgpack/msgpack": "^2.8.0",
"@oclif/core": "^4.2.0",
"@oclif/plugin-help": "^6.2.20",
"axios": "^1.7.9",
"camelcase-keys": "^9.1.3",
"chalk": "^5.4.1",
"conf-cli": "0.1.9",
"haversine-distance": "^1.2.3",
"inquirer": "^12.3.0",
"node-pty": "^1.0.0",
"ora": "^8.1.1",
"phoenix": "1.7.18",
"terminal-size": "^4.0.0"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.2",
"@types/phoenix": "^1.6.6",
"eslint": "^9.17.0",
"eslint-config-oclif": "^5.2.2",
"eslint-config-oclif-typescript": "^3.1.13",
"eslint-config-prettier": "^9.1.0",
"oclif": "^4.17.4",
"prettier": "^3.4.2",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=22.10.0"
}
}