-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.28 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.28 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
{
"name": "wcli0",
"version": "1.2.3",
"description": "Enhanced MCP server for Windows CLI interactions with advanced configuration and security features",
"type": "module",
"bin": {
"wcli0": "dist/index.js"
},
"files": [
"dist"
],
"license": "MIT",
"author": "s2005 <s2005@users.noreply.github.com>",
"homepage": "https://github.com/s2005/wcli0",
"repository": {
"type": "git",
"url": "git+https://github.com/s2005/wcli0.git"
},
"bugs": {
"url": "https://github.com/s2005/wcli0/issues"
},
"keywords": [
"mcp",
"claude",
"cli",
"windows",
"modelcontextprotocol",
"mcp-server"
],
"overrides": {
"glob": "^9.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "shx rm -rf dist",
"build": "tsc && shx chmod +x dist/index.js",
"build:full": "cross-env SHELL_BUILD_PRESET=full npm run build && shx cp dist/index.js dist/index.full.js",
"build:windows": "cross-env SHELL_BUILD_PRESET=windows npm run build && shx cp dist/index.js dist/index.windows.js",
"build:unix": "cross-env SHELL_BUILD_PRESET=unix npm run build && shx cp dist/index.js dist/index.unix.js",
"build:gitbash": "cross-env SHELL_BUILD_PRESET=gitbash-only npm run build && shx cp dist/index.js dist/index.gitbash-only.js",
"build:cmd": "cross-env SHELL_BUILD_PRESET=cmd-only npm run build && shx cp dist/index.js dist/index.cmd-only.js",
"build:powershell": "cross-env SHELL_BUILD_PRESET=powershell-only npm run build && shx cp dist/index.js dist/index.powershell-only.js",
"build:all": "npm run build:full && npm run build:windows && npm run build:unix && npm run build:gitbash && npm run build:cmd",
"build:analyze": "npm run build:all && bash scripts/analyze-builds.sh",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"lint": "tsc --noEmit",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:validation": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/validation.test.ts",
"test:wsl": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/wsl.test.ts",
"test:integration": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/integration/",
"test:async": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/asyncOperations.test.ts",
"test:directory": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/directoryValidator.test.ts",
"test:debug": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles",
"perf": "npm run build:all && node scripts/performance-test.js",
"perf:quick": "npm run build:gitbash && node scripts/performance-test.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"yargs": "^17.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.0",
"@types/yargs": "^17.0.33",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.3.4",
"typescript": "^5.3.3"
}
}