-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.33 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.33 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
74
75
76
77
78
79
80
{
"name": "ferman",
"version": "0.1.10",
"description": "A CLI tool to inspect, diagnose, and manage local ports and processes with predictable output for humans and AI agents.",
"keywords": [
"cli",
"devops",
"ports",
"process",
"node",
"ai",
"automation",
"toon",
"llm",
"terminal",
"developer-tools"
],
"homepage": "https://github.com/borakilicoglu/ferman#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/borakilicoglu/ferman.git"
},
"bugs": {
"url": "https://github.com/borakilicoglu/ferman/issues"
},
"license": "MIT",
"author": "Bora Kilicoglu",
"type": "commonjs",
"main": "dist/index.js",
"bin": {
"ferman": "bin/ferman.js",
"ferman-mcp": "bin/ferman-mcp.js"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"dev:mcp": "tsx src/mcp.ts",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"prepublishOnly": "npm run test && npm run build",
"release:check": "npm run lint && npm run test && npm run typecheck && npm run build && npm run smoke && npm_config_cache=.npm-cache npm pack --dry-run --ignore-scripts",
"smoke": "npm run build && node dist/cli.js --help && node dist/cli.js 65535 --dry --json && node dist/cli.js 65535 --dry --toon && node dist/cli.js --node --json && node dist/cli.js --node-ports --json && node -e \"require('./dist/mcp.js'); setTimeout(() => process.exit(0), 200)\"",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@toon-format/toon": "^2.1.0",
"@types/node": "^24.0.0",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"tsx": "^4.20.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.28.0",
"vitepress": "^2.0.0-alpha.12",
"vitest": "^3.2.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^4.3.6"
}
}