mirror of
https://github.com/khoaliber/paperclip.git
synced 2026-04-19 17:14:40 +00:00
Rename all workspace packages from @paperclip/* to @paperclipai/* and the CLI binary from `paperclip` to `paperclipai` in preparation for npm publishing. Bump CLI version to 0.1.0 and add package metadata (description, keywords, license, repository, files). Update all imports, documentation, user-facing messages, and tests accordingly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
613 B
TypeScript
27 lines
613 B
TypeScript
export {
|
|
paperclipConfigSchema,
|
|
configMetaSchema,
|
|
llmConfigSchema,
|
|
databaseConfigSchema,
|
|
loggingConfigSchema,
|
|
serverConfigSchema,
|
|
authConfigSchema,
|
|
storageConfigSchema,
|
|
storageLocalDiskConfigSchema,
|
|
storageS3ConfigSchema,
|
|
secretsConfigSchema,
|
|
secretsLocalEncryptedConfigSchema,
|
|
type PaperclipConfig,
|
|
type LlmConfig,
|
|
type DatabaseConfig,
|
|
type LoggingConfig,
|
|
type ServerConfig,
|
|
type AuthConfig,
|
|
type StorageConfig,
|
|
type StorageLocalDiskConfig,
|
|
type StorageS3Config,
|
|
type SecretsConfig,
|
|
type SecretsLocalEncryptedConfig,
|
|
type ConfigMeta,
|
|
} from "@paperclipai/shared";
|