36 lines
811 B
JSON
36 lines
811 B
JSON
{
|
|
"name": "@emigrate/plugin-generate-js",
|
|
"version": "0.1.0",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"description": "An Emigrate plugin for generating new migration files in JavaScript.",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.js",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --pretty",
|
|
"build:watch": "tsc --pretty --watch"
|
|
},
|
|
"keywords": [
|
|
"emigrate",
|
|
"emigrate-plugin",
|
|
"plugin",
|
|
"migrations",
|
|
"generate"
|
|
],
|
|
"author": "Aboviq AB <dev@aboviq.com> (https://www.aboviq.com)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@emigrate/plugin-tools": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@emigrate/tsconfig": "workspace:*"
|
|
}
|
|
}
|