-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.81 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.81 KB
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
{
"name": "oorja",
"description": "stream terminals to the web and more.",
"version": "2.4.0",
"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"
},
"dependencies": {
"@msgpack/msgpack": "3.1.2",
"@oclif/core": "^4.5.3",
"@oclif/plugin-help": "^6.2.32",
"camelcase-keys": "^10.0.0",
"chalk": "^5.6.2",
"haversine-distance": "^1.2.4",
"inquirer": "^12.9.4",
"node-pty": "^1.0.0",
"ora": "^8.2.0",
"phoenix": "1.8.1",
"terminal-size": "^4.0.0"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@types/inquirer": "^9.0.9",
"@types/node": "^22.10.2",
"@types/phoenix": "^1.6.6",
"eslint": "^9.35.0",
"eslint-config-oclif": "^6.0.102",
"eslint-config-prettier": "^10.1.8",
"oclif": "^4.22.18",
"prettier": "^3.6.2",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=22.10.0"
}
}