### Project Commands Source: https://github.com/pasarguard/core-kit/blob/main/README.md Standard commands for managing the PasarGuard Core Kit project, including installation, type checking, building, and testing. These commands are executed using 'bun'. ```powershell bun install bun run typecheck bun run build bun test ``` -------------------------------- ### Create and Validate Core Config Template Source: https://github.com/pasarguard/core-kit/blob/main/README.md Use this snippet to create a core config template for a specific core kind and validate it. Ensure the necessary functions are imported from '@pasarguard/core-kit'. ```typescript import { createCoreConfigTemplate, getCoreKit, validateCoreConfig } from "@pasarguard/core-kit"; const template = createCoreConfigTemplate("xray"); const result = validateCoreConfig("xray", template.configJson); ``` -------------------------------- ### Direct Imports for Core Kit Packages Source: https://github.com/pasarguard/core-kit/blob/main/README.md Import specific generators and utilities directly from their respective sub-packages within '@pasarguard/core-kit'. This is useful for accessing specialized functions like default configuration JSON or key pair generation. ```typescript import { createDefaultXrayCoreConfigJson } from "@pasarguard/core-kit/xray/generators"; import { generateWireGuardKeyPair } from "@pasarguard/core-kit/wireguard"; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.