feat(plugin-storage-fs): implement the first version of the File System Storage plugin

This commit is contained in:
Joakim Carlstein 2023-11-16 11:07:17 +01:00
parent 46b9104cda
commit 0c49249bd9
6 changed files with 182 additions and 0 deletions

View file

@ -0,0 +1,45 @@
{
"name": "@emigrate/plugin-storage-fs",
"version": "0.0.0",
"publishConfig": {
"access": "public"
},
"description": "A storage plugin for Emigrate for storing the migration history in a file",
"main": "dist/index.js",
"types": "dist/index.d.js",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --pretty",
"build:watch": "tsc --pretty --watch"
},
"keywords": [
"emigrate",
"emigrate-plugin",
"plugin",
"migrations",
"storage"
],
"author": "Aboviq AB <dev@aboviq.com> (https://www.aboviq.com)",
"homepage": "https://github.com/aboviq/emigrate/tree/main/packages/plugin-storage-fs#readme",
"repository": "https://github.com/aboviq/emigrate/tree/main/packages/plugin-storage-fs",
"bugs": "https://github.com/aboviq/emigrate/issues",
"license": "MIT",
"dependencies": {
"@emigrate/plugin-tools": "workspace:*"
},
"devDependencies": {
"@emigrate/tsconfig": "workspace:*"
},
"volta": {
"extends": "../../package.json"
}
}