This further reduces the amount of dependencies installed by payload. Special thanks to @benmccann for this PR (https://github.com/bcherny/json-schema-to-typescript/pull/639) ! json-schema-to-typescript before this PR (15.0.1):  14mb, 37 dependencies json-schema-to-typescript after this PR (15.0.3):  11 MB, 14 dependencies This PR also upgrades: - console-table-printer - croner - get-tsconfig - jose - pino-pretty - ts-essentials - tsx
Payload SQLite Adapter
Official SQLite adapter for Payload.
Installation
npm install @payloadcms/db-sqlite
Usage
import { buildConfig } from 'payload/config'
import { sqliteAdapter } from '@payloadcms/db-sqlite'
export default buildConfig({
db: sqliteAdapter({
client: {
url: process.env.DATABASE_URI,
},
}),
// ...rest of config
})
More detailed usage can be found in the Payload Docs.