packfs-core
Version:
Semantic filesystem operations for LLM agent frameworks with natural language understanding. See LLM_AGENT_GUIDE.md for copy-paste examples.
16 lines • 521 B
JavaScript
/**
* Security configuration types for Mastra integration
*/
/**
* Default security configuration values
*/
export const 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