-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.66 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
{
"name": "@profullstack/nmaptui",
"version": "0.1.0",
"description": "An admin console for nmap in the terminal: build scans from profiles, watch them run live, browse hosts and services, triage findings, diff scans over time and export reports. Bun and Node, built on HQTUI.",
"type": "module",
"license": "MIT",
"author": "Profullstack, Inc.",
"engines": {
"bun": ">=1.1",
"node": ">=22.6"
},
"bin": {
"nmaptui": "./bin/nmaptui.mjs"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"start": "bun src/main.ts",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --experimental-strip-types --test test/*.test.ts",
"test:bun": "bun test test/",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@profullstack/hqtui": "^0.5.0"
},
"devDependencies": {
"@types/node": "^22",
"typescript": "^5.7.2"
},
"keywords": [
"nmap",
"network",
"scanner",
"port-scanner",
"security",
"sysadmin",
"tui",
"terminal",
"cli",
"hqtui",
"bun"
],
"homepage": "https://github.com/profullstack/nmaptui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/profullstack/nmaptui.git"
},
"bugs": {
"url": "https://github.com/profullstack/nmaptui/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}