UNPKG

packfs-core

Version:

Semantic filesystem operations for LLM agent frameworks with natural language understanding. See LLM_AGENT_GUIDE.md for copy-paste examples.

19 lines 635 B
"use strict"; /** * Security configuration types for Mastra integration */ Object.defineProperty(exports, "__esModule", { value: true }); exports.DEFAULT_SECURITY_CONFIG = void 0; /** * Default security configuration values */ exports.DEFAULT_SECURITY_CONFIG = { maxFileSize: 10 * 1024 * 1024, // 10MB allowedExtensions: ['.txt', '.md', '.json', '.js', '.ts', '.jsx', '.tsx', '.py', '.java', '.cpp', '.c', '.h'], blockedPaths: ['.git', 'node_modules', '.env', '.npmrc', '.ssh', 'secrets'], rateLimiting: { maxRequests: 100, windowMs: 60 * 1000 // 1 minute } }; //# sourceMappingURL=config.js.map