-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 979 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 979 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@ittaigolde/neco",
"version": "0.2.2",
"description": "NECO - Neural Commander: a TUI wrapper that adds a file explorer and hotkey macros to any CLI",
"main": "dis-cli.js",
"bin": {
"neco": "dis-cli.js"
},
"files": [
"dis-cli.js",
"src/",
"scripts/postinstall.js"
],
"scripts": {
"test": "node --test",
"test:unit": "node --test test/*.test.js",
"pack:check": "npm pack --dry-run --cache /tmp/neco-npm-cache",
"postinstall": "node scripts/postinstall.js"
},
"engines": {
"node": ">=18"
},
"keywords": [
"cli",
"terminal",
"file-browser",
"macros",
"norton-commander",
"tui",
"pty"
],
"author": "Ittai Golde",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ittaigolde/neco.git"
},
"type": "commonjs",
"dependencies": {
"adm-zip": "^0.5.17",
"blessed": "^0.1.81",
"node-pty": "^1.1.0",
"tar": "^7.5.13"
}
}