├── .editorconfig ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts ├── make-field.ts ├── safe-encoder.ts └── separated-file-store.ts ├── test ├── chinese-filename.test.ts ├── msgpack-gzip-serializer.ts ├── test.js └── test.spec.ts ├── tsconfig.json └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/make-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/src/make-field.ts -------------------------------------------------------------------------------- /src/safe-encoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/src/safe-encoder.ts -------------------------------------------------------------------------------- /src/separated-file-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/src/separated-file-store.ts -------------------------------------------------------------------------------- /test/chinese-filename.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/test/chinese-filename.test.ts -------------------------------------------------------------------------------- /test/msgpack-gzip-serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/test/msgpack-gzip-serializer.ts -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/test/test.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaaack/keyv-file/HEAD/vitest.config.ts --------------------------------------------------------------------------------