-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.47 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
{
"name": "fauxnix-cli",
"version": "1.0.0",
"description": "Fauxnix — run Linux-style commands on Windows via deterministic PowerShell translation. No VM, no WSL. MCP server + CLI for AI agents.",
"type": "module",
"bin": {
"fauxnix": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run release:check -- --require-tag && npm run typecheck && npm test && npm run test:package",
"release:check": "node scripts/release-check.mjs",
"test": "vitest run",
"test:package": "node scripts/package-smoke.mjs",
"benchmark:mcp-batch": "npm run build && node scripts/benchmark-mcp-batch.mjs",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"dev": "tsx src/index.ts"
},
"keywords": [
"bash",
"powershell",
"translate",
"translator",
"linux",
"windows",
"mcp",
"mcp-server",
"ai-agent",
"claude-code",
"codex",
"opencode",
"kimi-code",
"shell",
"gbk",
"utf8"
],
"engines": {
"node": ">=18"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/20000419/fauxnix.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"iconv-lite": "^0.6.3",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"tsx": "^4.19.0",
"typescript": "^5.5.0",
"vitest": "3.2.6"
}
}