emigrate/packages/plugin-tools/package.json
Joakim Carlstein 9c239e0ae5 feat(plugins): automatically prefix plugins when loading if necessary
I.e. when specifying only "--plugin generate-js" Emigrate will load the @emigrate/plugin-generate-js plugin.
2023-11-10 10:45:15 +01:00

39 lines
792 B
JSON

{
"name": "@emigrate/plugin-tools",
"version": "0.0.0",
"publishConfig": {
"access": "public"
},
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.js",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": {
"import": "./dist/types.js",
"types": "./dist/types.d.ts"
}
},
"scripts": {
"build": "tsc --pretty",
"build:watch": "tsc --pretty --watch"
},
"keywords": [
"emigrate",
"plugin",
"migrations",
"types"
],
"author": "Aboviq AB <dev@aboviq.com> (https://www.aboviq.com)",
"license": "MIT",
"devDependencies": {
"@emigrate/tsconfig": "workspace:*"
},
"dependencies": {
"import-from-esm": "1.2.1"
}
}