-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.73 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.73 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "file-organizer-mcp",
"version": "5.0.0",
"description": "Intelligent file organization MCP server for Claude with security-hardened operations, auto-categorization, and duplicate detection",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"file-organizer-mcp": "./bin/file-organizer-mcp.mjs",
"file-organizer": "./bin/file-organizer-mcp.mjs",
"file-organizer-setup": "./bin/file-organizer-setup.mjs",
"file-organizer-watch": "./bin/file-organizer-watch.mjs"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"start": "node dist/src/index.js",
"dev": "npm run build && npm run start",
"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:security:static": "node dist/scripts/security-gates/static-analysis.js",
"test:security:gates": "node dist/scripts/security-gates/run-all.js",
"test:security": "npm run test:security:static && node --experimental-vm-modules node_modules/jest/bin/jest.js tests/unit/security_suite.test.ts tests/unit/security_repro.test.ts tests/unit/category_security.test.ts tests/unit/services/v5-regressions.test.ts tests/unit/services/adversarial-deep-audit.test.ts tests/unit/services/adversarial-deep-audit-2.test.ts tests/unit/services/adversarial-tool-gates.test.ts",
"verify:all": "npm run build && npm run lint && npm run test:security && npm test",
"setup": "node dist/src/tui/index.js",
"postinstall": "node scripts/postinstall.cjs",
"prepare": "node scripts/prepare.cjs",
"prepublishOnly": "npm run clean && npm run build && npm test",
"test:phase1": "node dist/tests/test-phase1.js",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --no-warn-ignored",
"lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix --no-warn-ignored",
"format": "prettier --write src/**/*.ts",
"docs:generate": "node scripts/generate-docs.js",
"clean": "rimraf dist"
},
"keywords": [
"mcp",
"mcp-server",
"file-organizer",
"file-organization",
"file-management",
"automation",
"claude",
"ai-tools",
"duplicate-detection",
"file-categorization",
"typescript",
"security"
],
"author": "kridaydave",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kridaydave/File-Organizer-MCP.git"
},
"bugs": {
"url": "https://github.com/kridaydave/File-Organizer-MCP/issues"
},
"homepage": "https://github.com/kridaydave/File-Organizer-MCP#readme",
"dependencies": {
"@inquirer/prompts": "^8.5.2",
"@modelcontextprotocol/server": "^2.0.0",
"chalk": "^5.6.2",
"exif-parser": "^0.1.12",
"minimatch": "^10.1.2",
"music-metadata": "^11.11.2",
"node-cron": "^4.6.0",
"piexifjs": "^1.0.6",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"@types/node-cron": "^3.0.11",
"@types/ws": "^8.18.1",
"eslint": "^10.8.1",
"globals": "^17.11.0",
"jest": "^30.4.2",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.12",
"typescript": "^5.3.2",
"typescript-eslint": "^8.67.0"
},
"engines": {
"node": ">=20.0.0"
},
"os": [
"win32",
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
],
"files": [
"bin",
"dist",
"scripts/postinstall.cjs",
"scripts/prepare.cjs",
"README.md",
"LICENSE",
"CHANGELOG.md",
"ARCHITECTURE.md",
"CONTRIBUTING.md",
"MIGRATION.md"
],
"private": false,
"publishConfig": {
"access": "public"
}
}