{
    "name": "lithic-embed",
    "version": "0.1.0-beta.0",
    "description": "Lithic's Embed SDK",
    "license": "Apache-2.0",
    "type": "module",
    "packageManager": "bun@1.3.9",
    "sideEffects": false,
    "files": [
        "dist/prod/index.js",
        "dist/types/*.d.ts",
        "dist/types/**/*.d.ts"
    ],
    "main": "./dist/prod/index.js",
    "module": "./dist/prod/index.js",
    "types": "./dist/types/index.d.ts",
    "exports": {
        ".": {
            "types": "./dist/types/index.d.ts",
            "import": "./dist/prod/index.js",
            "default": "./dist/prod/index.js"
        }
    },
    "scripts": {
        "test": "bun test",
        "build": "bun run clean:dist && bun run build:types && bun run build:dev && bun run build:prod",
        "build:dev": "bun build ./src/index.ts --outdir=./dist/dev --format=esm --target=browser --entry-naming=[name].js --sourcemap=linked",
        "build:prod": "bun build ./src/index.ts --outdir=./dist/prod --format=esm --target=browser --entry-naming=[name].js --sourcemap=none --minify",
        "build:types": "tsc -p tsconfig.types.json",
        "clean:dist": "rm -rf dist/dev dist/prod dist/types",
        "lint": "biome check .",
        "format:check": "biome check --formatter-enabled=true --linter-enabled=false .",
        "format": "biome format --write .",
        "typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.test.json"
    },
    "devDependencies": {
        "@biomejs/biome": "^2.4.12",
        "@types/bun": "^1.3.14",
        "typescript": "^6.0.3"
    },
    "dependencies": {
        "csstype": "^3.2.3",
        "style-observer": "^0.1.2"
    }
}
