├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── index.ts ├── package.json └── tsconfig.json ├── jest.config.js ├── package-cjs.json ├── package.json ├── src ├── __tests__ │ └── index.ts └── index.ts ├── tsconfig.base.json ├── tsconfig.build-cjs.json ├── tsconfig.build-esm.json └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/README.md -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/example/index.ts -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/example/package.json -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/jest.config.js -------------------------------------------------------------------------------- /package-cjs.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/src/__tests__/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.build-cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/tsconfig.build-cjs.json -------------------------------------------------------------------------------- /tsconfig.build-esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/tsconfig.build-esm.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tursodatabase/kysely-libsql/HEAD/tsconfig.json --------------------------------------------------------------------------------